(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs3002-1.cs
blob3e57f0e8903cd73e7808c1ef24a0cf176b183e0b
1 // cs3002-2.cs: Return type of 'CLSClass.Foo()' is not CLS-compliant
2 // Line: 13
4 using System;
5 [assembly:CLSCompliant(true)]
7 [CLSCompliant(false)]
8 public interface I1 {
11 public class CLSClass {
12 protected internal I1 Foo() {
13 return null;
16 static void Main() {}