2009-06-17 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / cs3003-6.cs
1 // CS3003: Type of `I.Foo' is not CLS-compliant\r
2 // Line: 10
3 // Compiler options: -warnaserror -warn:1
4 \r
5 using System;\r
6 [assembly:CLSCompliant (true)]\r
7 \r
8 [CLSCompliant (true)]\r
9 public interface I {\r
10     uint Foo { set; }\r
11 }\r
12 \r