retag
[mcs.git] / errors / gcs0206.cs
blob36be34da8019d92f24929e7004c8650354eaf98e
1 // CS0206: A property or indexer `anonymous type.Foo' may not be passed as `ref' or `out' parameter
2 // Line: 14
5 class C
7 static void Foo (ref object o)
11 public static void Main ()
13 var v = new { Foo = "Bar" };
15 Foo (ref v.Foo);