16 lines
253 B
C#
16 lines
253 B
C#
|
// Compiler options: -warnaserror
|
||
|
|
||
|
using System;
|
||
|
[assembly:CLSCompliant(true)]
|
||
|
|
||
|
public interface I1 {
|
||
|
}
|
||
|
|
||
|
public class CLSClass {
|
||
|
protected internal I1 Foo() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public static void Main() {}
|
||
|
}
|