blob: 13be787b389bc3691865f33c834e35d5f53422fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS3005: Identifier `II.foo' differing only in case is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror
using System;
[assembly:CLSCompliant(true)]
public interface II {
int Foo();
int foo { get; }
}
|