[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0244.cs
blobff248e6ae503b8ae77e14d23c674830a348256f2
1 // CS0244: The `is' operator cannot be applied to an operand of pointer type
2 // Line: 7
3 // Compiler options: -unsafe
5 class UnsafeClass {
6 unsafe UnsafeClass (int* pointer) {
7 if (pointer is string) {}