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

test-391.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c9769101b809d6fe4066f170eae799cd14618b2 (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
class C
{
	void Foo (int i)
	{
	}
	
	void Foo (ref int i)
	{
	}
	
	void Bar (out bool b)
	{
		b = false;
	}
	
	void Bar (bool b)
	{
	}
	
	public static void Main ()
	{
	}
}