Files
linux-packaging-mono/mcs/errors/cs0694.cs

13 lines
145 B
C#
Raw Normal View History

// CS0694: Type parameter `Y' has same name as containing type, or method
// Line: 4
class Y <Y> {
}
class Test
{
static void Main ()
{ }
}