Another dist build fix for rx integration, move *.cs file to safe-ish path.
[mono-project.git] / mcs / tests / gtest-anontype-12.cs
blob88585dd3796eadc1e4b78e6a60dacae03089f2d4
1 using System;
3 class C
5 public static int Main ()
7 var a = new { ToString = 1 };
8 if (a.ToString != 1)
9 return 1;
11 return 0;