[mcs] C#7 throw expression
[mono.git] / mcs / tests / gtest-072.cs
index 70a346b584f52f0247495ce1717a8d061e85c536..8325cecb0610c108dd30271b21f5c35feeda5271 100644 (file)
@@ -37,7 +37,6 @@ public class Log<T> {
 }
 
 class TestLog {
-  class MyTest {
     public static void Main(String[] args) {
       Log<String> log1 = new Log<String>();
       log1.Add("Reboot");
@@ -65,7 +64,6 @@ class TestLog {
       foreach (Pair<DateTime,String> p in allMsgs) 
        Console.WriteLine("At {0}: {1}", p.Fst, p.Snd);
     }
-  }
 }
 
 public struct Pair<T,U> {