[Microsoft.CSharp] Replaced with CoreFX implementation
[mono.git] / mcs / tests / test-538.cs
index 0728da154249901a1ef5a20b711be1fef4a2a965..587d9e4891485e807b3a40177e408a4305ba5545 100644 (file)
@@ -1,18 +1,18 @@
-delegate IInterface testDelegate(concrete x);\r
-\r
-interface IInterface {\r
-}\r
-\r
-class concrete : IInterface {\r
-}\r
-\r
-class Program {\r
-   private concrete getConcrete(IInterface z) {\r
-      return new concrete();\r
-   }\r
-   \r
-   public static void Main(string[] args) {\r
-      Program p = new Program();\r
-      testDelegate x = new testDelegate(p.getConcrete);\r
-   }\r
+delegate IInterface testDelegate(concrete x);
+
+interface IInterface {
+}
+
+class concrete : IInterface {
+}
+
+class Program {
+   private concrete getConcrete(IInterface z) {
+      return new concrete();
+   }
+   
+   public static void Main(string[] args) {
+      Program p = new Program();
+      testDelegate x = new testDelegate(p.getConcrete);
+   }
 }
\ No newline at end of file