quote only work on lambda on net_4_0
[mcs.git] / errors / cs0023-7.cs
blob3135281606e9629ba39e1ee76b7b3eba3ba418d7
1 // CS0023: The `.' operator cannot be applied to operand of type `int*'
2 // Line: 8
3 // Compiler options: -unsafe
5 class C
7 static unsafe int* Foo ()
9 return (int*)0;
12 public static void Main ()
14 unsafe {
15 string s = Foo().ToString ();