Updated.
[mono.git] / mcs / tests / gtest-anon-type-09.cs
1 using System;
2
3 namespace My.System
4 {
5         static class Test
6         {
7         public static void Main ()
8             {
9             var a = new { X = 1 };
10                 Console.WriteLine(a);
11             }
12         }
13 }