dlr bug
[mcs.git] / tests / test-411.cs
blobe8f70bc78687dc60e59e771a7c1797ba5070391c
1 // Compiler options: -r:test-411-lib.dll
3 namespace QtSamples
5 using Qt;
7 public class QtClass: QtSupport
9 public QtClass()
11 mousePressEvent += new MousePressEvent( pressEvent );
14 public void pressEvent() { }
18 public class Testing
20 public static int Main()
22 QtClass q = new QtClass();
24 return 0;