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

gtest-299.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 951b1621eef2eb1524779897d55fe283ee1e5f06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using X = N;
namespace N { class A {} }
class B<T> { }
class Test {
	static public B<X::A> q;
	public static void Main ()
	{
		q = new B<N.A> ();
		if (typeof (B<X::A>) != typeof (B<X.A>))
			throw new Exception ("huh");
	}
}