[mcs] Allows shadowing of probing pattern variables
[mono.git] / mcs / errors / cs0081.cs
1 // CS0081: Type parameter declaration must be an identifier not a type
2 // Line: 4
3
4 class D<string>
5 {
6 }