Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-411.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8f70bc78687dc60e59e771a7c1797ba5070391c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Compiler options: -r:test-411-lib.dll

namespace QtSamples
{
	using Qt;

	public class QtClass: QtSupport
	{
		public QtClass()
		{
			mousePressEvent += new MousePressEvent( pressEvent );
		}
		
		public void pressEvent() { }
	}


	public class Testing
	{
		public static int Main()
		{
			QtClass q = new QtClass();

			return 0;
		}
	}
}