[jit] Use MONO_INS_IS_PCONST_NULL () macro in more places.
[mono.git] / mcs / tests / test-interpolation-05.cs
1 using System;
2
3 public class ParserTest
4 {
5         void Test1 ()
6         {
7                 bool b = true;
8                 Console.WriteLine(b ? $"{1:0.00}" : $"bar");
9         }
10
11         void Test2 ()
12         {
13                 Console.WriteLine($"This should work but the compiler explodes if the string is too long!");            
14         }
15
16         public static void Main()
17         {
18         }
19 }