[xbuild] Vbc task - make error column check a little non-specific.
[mono.git] / mcs / tests / test-cls-11.cs
index d52f2cfec4c9898d4e1c987290ebf841161bd42a..c2c8699a8fa8ef15ec4df2748c00ba7eeac0443c 100644 (file)
@@ -1,3 +1,5 @@
+// Compiler options: -warnaserror
+
 using System;
 [assembly:CLSCompliant (true)]
 
@@ -15,7 +17,17 @@ public abstract class CLSClass_3 {
         internal abstract void Test ();
 }
 
+[CLSCompliant(true)]
+public interface ICallable
+{
+       object Call(params object[] args);
+       object Target
+       {
+               get;
+       }
+}
+
 public class MainClass {
         public static void Main () {
         }
-}
\ No newline at end of file
+}