dlr bug
[mcs.git] / tests / gtest-233.cs
blob8a52828d0703a0452985e4186ced31b563160a8e
1 // Compiler options: /r:gtest-233-lib.dll
2 using System;
3 using System.Collections.Generic;
4 using System.Text;
5 using System.ComponentModel;
7 class Program
9 static void Main (string[] args)
11 MyClass<int> list = new MyClass<int>();
13 list.ListChanged += new ListChangedEventHandler (list_ListChanged);
16 static void list_ListChanged (object sender, ListChangedEventArgs e) { }