* ILParser.jay: Same as below but with float64 ()
[mono.git] / mcs / errors / cs3005.cs
1 // cs3005: Identifier foo differing only in case is not CLS-Compliant.
2 // Line: 13 
3
4
5 using System;
6
7 class ErrorCS3005 {
8         public int FOO = 0;
9         public int foo = 1;
10
11         public static void Main ( ) {
12                 ErrorCS3005 error = new ErrorCS3005 ();
13                 Console.WriteLine ("This should make the compiler to complain ERROR CS3005, number: {0}", error.foo);
14         }
15 }
16