2004-06-09 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / cs3005-18.cs
1 // cs3005.cs: Identifier 'B.TEST()' differing only in case is not CLS-compliant
2 // Line: 15
3
4 using System;
5
6 [assembly: CLSCompliantAttribute (true)]
7
8 public class A
9 {
10     [CLSCompliant (false)]
11     public void Test () {}
12         
13     public void test () {}
14 }
15
16 public class B: A
17 {
18     public void TEST () {} 
19 }