summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3008-6.cs
blob: 65afa4bf30d3960d2c8826791127d7d91aadb478 (plain)
1
2
3
4
5
6
7
8
9
10
// CS3008: Identifier `C._()' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant(true)]

public class C {
        public void _() {}
}