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

gtest-530.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85d1fb6a5128f166373dd9c299325ba59404db78 (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 B : B2.IB
{
	public interface IA
	{
	}
	
	public static void Main ()
	{
	}
}

class B2 : A
{
	public interface IB
	{
	}
}

class A : G<int>
{
}

class G<T>
{
}