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

one.cs « tests « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0037294fd49b898df7e9eba922625bc11c619fe (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
31
32
33
34
35
36
37
38
39
public class outer {
	public class inner {
	}
}

public class gen <T> {
	public static void foo ()
	{
	}
}

namespace ns {
	public class gen_m <T> {
		public static void foo ()
		{
		}
		public static void foo <A> (A _a)
		{
		}
		public static void foo <A, B> (A _a)
		{
		}
	}
}

public interface If1 <T> {
}

public interface If2 <T> {
}

public interface If3 {
}
	
public struct gen_struct <T> {
	public static void foo ()
	{
	}
}