summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3003-3.cs
blob: f0e5781a6761636ad2884b35d43742a5b4ce26aa (plain)
1
2
3
4
5
6
7
8
9
10
// CS3003: Type of `I.Error' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant(true)]

public interface I {
        UIntPtr Error { get; }
}