[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs1686-3.cs
bloba992737501d2aa3c6bf711da9e92448ffd4f0d99
1 // CS1686: Local variable or parameter `i' cannot have their address taken and be used inside an anonymous method, lambda expression or query expression
2 // Line: 18
3 // Compiler options: -unsafe
5 unsafe struct S
7 public int i;
10 class C
12 unsafe delegate int* D ();
14 static void Main ()
16 unsafe {
17 S str = new S ();
18 D d = delegate { return &str.i; };