blob: 7d5e98dd148adfbfc9f479a5d4cd32b696adb12d (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS3002: Return type of `I.Error()' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1
[assembly:System.CLSCompliant(true)]
public interface I
{
ulong Error();
}
|