[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0209.cs
blobc1fd979d025ecdce2d5922943ea113063e518ae4
1 // CS0209: The type of locals declared in a fixed statement must be a pointer type
2 // Line: 9
3 // Compiler options: -unsafe
5 public class A
7 unsafe static void Main ()
9 fixed (string s = null)