[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0146-6.cs
blob0a164dba475cb59a02bc1e9f4d05f230203c3878
1 // CS0146: Circular base class dependency involving `B<T>' and `A<float>'
2 // Line: 8
4 class A<T> : B<int>
8 class B<T> : A<float>
9 { }
11 class X
13 static void Main ()
14 { }