[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / cs0244.cs
1 // CS0244: The `is' operator cannot be applied to an operand of pointer type
2 // Line: 7
3 // Compiler options: -unsafe
4
5 class UnsafeClass {
6         unsafe UnsafeClass (int* pointer) {
7                 if (pointer is string) {}
8         }
9 }
10
11