[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / tests / test-interpolation-08.cs
1 using System;
2 using System.Collections.Generic;
3
4 public class Program
5 {
6         public static int Main ()
7         {
8                 var x = $@"({
9                                 new Dictionary<int, object> {
10                                         { 1, "bbb" }
11                                 }.Count
12                                 });";
13
14                 if (x != "(1);")
15                         return 1;
16
17                 return 0;
18         }
19 }