Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-anontype-09.cs
1 using System;
2
3 namespace My.System
4 {
5         static class Test
6         {
7                 public static int Main ()
8                 {
9                         var a = new { X = 1 };
10                         Console.WriteLine(a);
11                         
12                         var foo = new { Value = default(string) };
13                         if (foo.Value != null)
14                                 return 1;
15
16                 return 0;
17             }
18         }
19 }