[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1031-3.cs
blob3126dfaa48babfd0ef356ac5cae5f4fb141a0354
1 // CS1031: Type expected
2 // Line: 16
4 public class B<Y> where Y: B<Y>
8 public class A<X>: B<A<X>>
12 public class Repro
14 public static void Main (string[] args)
16 var h = typeof (B<A<>>);