Switch to compiler-tester
[mono.git] /
1 using System;
2
3 public interface IA<T> where T : struct {
4
5 }
6
7 public class B<T> : IA<T> where T:struct {
8
9 }
10
11 public class MainClass {
12         public static void Main () {}
13
14 }
15