[xbuild] Use the env var $MSBuildExtensionsPath before trying other paths.
[mono.git] / mcs / tests / test-cls-11.cs
index e7e47e743e1d925c1e43e2a8831bb0aea8e68d02..c2c8699a8fa8ef15ec4df2748c00ba7eeac0443c 100644 (file)
@@ -1,3 +1,5 @@
+// Compiler options: -warnaserror
+
 using System;
 [assembly:CLSCompliant (true)]
 
@@ -11,7 +13,21 @@ public abstract class CLSCLass_2 {
         public abstract void Test ();
 }
 
+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
+}