eol
[mcs.git] / tests / gtest-151.cs
blobb14f73fc584c172042c61bca06f1e7a8b25fb833
1 class Test<T> where T: struct{
2 public Test(){
3 T s = new T();
7 class X
9 static int Main ()
11 new Test<bool> ();
12 return 0;