Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git] / mcs / tests / test-interpolation-08.cs
blobf617c523878cb797f22658dee72a76db9b309e3c
1 using System;
2 using System.Collections.Generic;
4 public class Program
6 public static int Main ()
8 var x = $@"({
9 new Dictionary<int, object> {
10 { 1, "bbb" }
11 }.Count
12 });";
14 if (x != "(1);")
15 return 1;
17 return 0;