536cd135cc
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
18 lines
204 B
C#
18 lines
204 B
C#
// CS1031: Type expected
|
|
// Line: 16
|
|
|
|
public class B<Y> where Y: B<Y>
|
|
{
|
|
}
|
|
|
|
public class A<X>: B<A<X>>
|
|
{
|
|
}
|
|
|
|
public class Repro
|
|
{
|
|
public static void Main (string[] args)
|
|
{
|
|
var h = typeof (B<A<>>);
|
|
}
|
|
} |