linux-packaging-mono/mcs/tests/test-interpolation-08.cs

19 lines
242 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
public class Program
{
public static int Main ()
{
var x = $@"({
new Dictionary<int, object> {
{ 1, "bbb" }
}.Count
});";
if (x != "(1);")
return 1;
return 0;
}
}