[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0459-5.cs
blobfa2cfd27dae1af8fd428a969817f0f1f94e9c5bc
1 // CS0459: Cannot take the address of `this' because it is read-only
2 // Line: 11
3 // Compiler options: -unsafe -langversion:latest
5 readonly struct X
7 unsafe void Test ()
9 fixed (X* x = &this) {