Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/tests/gtest-072.cs')
-rw-r--r--mcs/tests/gtest-072.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/mcs/tests/gtest-072.cs b/mcs/tests/gtest-072.cs
index 70a346b584f..8325cecb061 100644
--- a/mcs/tests/gtest-072.cs
+++ b/mcs/tests/gtest-072.cs
@@ -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> {