Merge pull request #5439 from alexrp/master
[mono.git] / mcs / tests / gtest-290.cs
index 5666733b7800c8d54399312606ad954c19734ca9..046fed6a89c5a2cd86d2abbb8a2e850f8f264218 100644 (file)
@@ -1,27 +1,27 @@
-// Compiler options: -warnaserror -warn:4\r
-\r
-using System;\r
-\r
-public delegate void GenericEventHandler<U, V>(U u, V v);\r
-\r
-public class GenericEventNotUsedTest<T>\r
-{\r
-       event GenericEventHandler<GenericEventNotUsedTest<T>, T> TestEvent;\r
-\r
-       public void RaiseTestEvent(T t)\r
-       {\r
-               TestEvent(this, t);\r
-       }\r
-}\r
-\r
-public interface IFoo {\r
-               event EventHandler blah;\r
-}\r
-\r
-public static class TestEntry\r
-{\r
-       public static void Main()\r
-       {\r
-       }\r
-}\r
-\r
+// Compiler options: -warnaserror -warn:4
+
+using System;
+
+public delegate void GenericEventHandler<U, V>(U u, V v);
+
+public class GenericEventNotUsedTest<T>
+{
+       event GenericEventHandler<GenericEventNotUsedTest<T>, T> TestEvent;
+
+       public void RaiseTestEvent(T t)
+       {
+               TestEvent(this, t);
+       }
+}
+
+public interface IFoo {
+               event EventHandler blah;
+}
+
+public static class TestEntry
+{
+       public static void Main()
+       {
+       }
+}
+