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

gtest-525.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0c420f4c1a3e9be5e9e5e5ef25113c61676c9ed (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
using System;

class A
{
	static void MA<T> (string s)
	{
	}

	static void F ()
	{
	}

	public class C
	{
		Func<int> MA;
		int F;
		
		void Foo ()
		{
			F ();
			MA<int> ("");
		}
		
		public static void Main ()
		{
			new C ().Foo ();
		}
	}
}