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

gtest-151.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 247b330c224aa7d13378e204abce2c6cd85d31cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Test<T> where T: struct{
   public Test(){
      T s = new T();
   }
}

class X
{
	public static int Main ()
	{
		new Test<bool> ();
		return 0;
	}
}