svn path=/branches/mono-1-1-9/mcs/; revision=51206
[mono.git] / mcs / errors / cs3005-8.cs
1 // cs3005-8.cs: Identifier `II.Foo()' differing only in case is not CLS-compliant
2 // Compiler options: -warnaserror
3 // Line: 9
4
5 using System;
6 [assembly:CLSCompliant(true)]
7
8 public interface II {
9         int Foo();
10         int foo { get; }
11 }