[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0081-2.cs
1 // CS0081: Type parameter declaration must be an identifier not a type
2 // Line: 6
3
4 class D
5 {
6         public void Foo<int>()
7         {
8         }
9 }