Merge pull request #4327 from vkargov/vk-abcremedy
[mono.git] / mcs / tests / test-411.cs
1 // Compiler options: -r:test-411-lib.dll
2
3 namespace QtSamples
4 {
5         using Qt;
6
7         public class QtClass: QtSupport
8         {
9                 public QtClass()
10                 {
11                         mousePressEvent += new MousePressEvent( pressEvent );
12                 }
13                 
14                 public void pressEvent() { }
15         }
16
17
18         public class Testing
19         {
20                 public static int Main()
21                 {
22                         QtClass q = new QtClass();
23
24                         return 0;
25                 }
26         }
27 }
28
29
30