2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3005-18.cs
blobf3aaa5d2777669691737813e35ded1f34a9ad50f
1 // cs3005-18.cs: Identifier `B.TEST()' differing only in case is not CLS-compliant
2 // Line: 15
3 // Compiler options: -warnaserror
5 using System;
7 [assembly: CLSCompliantAttribute (true)]
9 public class A
11 [CLSCompliant (false)]
12 public void Test () {}
14 public void test () {}
17 public class B: A
19 public void TEST () {}