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-233.cs')
-rw-r--r--mcs/tests/gtest-233.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/mcs/tests/gtest-233.cs b/mcs/tests/gtest-233.cs
deleted file mode 100644
index 8a52828d070..00000000000
--- a/mcs/tests/gtest-233.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-// Compiler options: /r:gtest-233-lib.dll
-using System;
-using System.Collections.Generic;
-using System.Text;
-using System.ComponentModel;
-
-class Program
-{
- static void Main (string[] args)
- {
- MyClass<int> list = new MyClass<int>();
-
- list.ListChanged += new ListChangedEventHandler (list_ListChanged);
- }
-
- static void list_ListChanged (object sender, ListChangedEventArgs e) { }
-}