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-exe.cs')
-rw-r--r--mcs/tests/gtest-233-exe.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/tests/gtest-233-exe.cs b/mcs/tests/gtest-233-exe.cs
new file mode 100644
index 00000000000..ea331614261
--- /dev/null
+++ b/mcs/tests/gtest-233-exe.cs
@@ -0,0 +1,18 @@
+// Compiler options: /r:gtest-233-lib.dll
+// Dependencies: gtest-233-lib.cs
+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) { }
+}