2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3005-25.cs
blobb9410e32b7358b8a39092bade3aaf53ae0c9065d
1 // CS3005: Identifier `Foo.main()' differing only in case is not CLS-compliant
2 // Line: 9
3 // Compiler options: -warnaserror
5 using System;
6 [assembly: CLSCompliant(false)]
8 [CLSCompliant(true)]
9 public class Foo {
10 public static void Main () {}
11 public static void main () {}