Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / dtest-063.cs
1 using System;
2
3 class InvalidILWhenInterpolatingDynamicObjectTest
4 {
5         static int Main ()
6         {
7                 dynamic d = 1;
8                 var str = $"{d + 3}";
9                 if (str != "4")
10                         return 1;
11
12                 Console.WriteLine (str);
13                 return 0;
14         }
15 }