Fix problems with overlong directory names: phase #1
[mono.git] / mcs / errors / cs3003-6.cs
1 // CS3003: Type of `I.Foo' is not CLS-compliant\r
2 // Line: 9\r
3 \r
4 using System;\r
5 [assembly:CLSCompliant (true)]\r
6 \r
7 [CLSCompliant (true)]\r
8 public interface I {\r
9     uint Foo { set; }\r
10 }\r
11 \r