[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0308-4.cs
blobe96039ab91486dc90a4a9ef6b908aac6090e690c
1 // CS0308: The non-generic type `Stack' cannot be used with the type arguments
2 // Line: 9
4 class Stack
5 { }
7 class X
9 Stack<float> stack;