blob: 9c2c20080cde846f66b6102a7bd090fbc7281452 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS3003: Type of `I.Foo' is not CLS-compliant
// Line: 10
// Compiler options: -warnaserror -warn:1
using System;
[assembly:CLSCompliant (true)]
[CLSCompliant (true)]
public interface I {
uint Foo { set; }
}
|