2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / 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) {}