Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-233.cs
1 // Compiler options: /r:gtest-233-lib.dll
2 using System;
3 using System.Collections.Generic;
4 using System.Text;
5 using System.ComponentModel;
6
7 class Program
8 {
9         public static void Main (string[] args)
10         {
11                 MyClass<int> list = new MyClass<int>();
12
13                 list.ListChanged += new ListChangedEventHandler (list_ListChanged);
14         }
15
16         static void list_ListChanged (object sender, ListChangedEventArgs e) { }
17 }