summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3008-5.cs
blob: 503c96d488a5f5986903c5d31a55c75667ec13d8 (plain)
1
2
3
4
5
6
7
8
9
10
// CS3008: Identifier `I._()' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant(true)]

public interface I {
        void _();
}