2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1686.cs
blob412007de9969ee978e5e67b53cbae0528e150163
1 // CS1686: Local variable or parameter `str' cannot have their address taken and be used inside an anonymous method or lambda expression
2 // Line: 11
3 // Compiler options: -unsafe
5 using System;
7 unsafe struct S
9 public fixed int i [10];
12 class C
14 static void Main ()
16 unsafe {
17 S str;
18 Func<int> e = () => str.i [3];