dlr bug
[mcs.git] / tests / gtest-anontype-09.cs
blobf47422acaf64556f3b785bbeac0fddaf112f2bc2
1 using System;
3 namespace My.System
5 static class Test
7 public static int Main ()
9 var a = new { X = 1 };
10 Console.WriteLine(a);
12 var foo = new { Value = default(string) };
13 if (foo.Value != null)
14 return 1;
16 return 0;