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

test-792.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: daa305048a45fb27c343a7dcffd03bac54d1f641 (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
// Compiler options: -r:test-792-lib.dll

// Compilation test only for missing 2nd level dependecies

[A2]
class Program
{
	void Test ()
	{
		new X();
		
		var s = new MultipleSameNames ();
		s.AA = "1";
		
		Overload.Test (1);
	}
	
	void Test2 (IMemberDelayed md)
	{
		md.Working ();
		var t = typeof (IMemberDelayed);
	}

	public static void Main ()
	{
	}
}