summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-151.cs
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;
	}
}