2005-04-12 Dick Porter <dick@ximian.com>
[mono.git] / mcs / errors / cs3005-8.cs
1 // cs3005.cs: Identifier 'II.foo' differing only in case is not CLS-compliant
2 // Line: 9
3
4 using System;
5 [assembly:CLSCompliant(true)]
6
7 public interface II {
8         int Foo();
9         int foo { get; }
10 }