blob: b9410e32b7358b8a39092bade3aaf53ae0c9065d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS3005: Identifier `Foo.main()' differing only in case is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror
using System;
[assembly: CLSCompliant(false)]
[CLSCompliant(true)]
public class Foo {
public static void Main () {}
public static void main () {}
}
|