[eglib] In AIX/generic POSIX, handle null addresses better (#17892)
[mono-project.git] / mcs / tests / test-interpolation-10.cs
blob15f5e2168038f2265f8fa48a661de2c97401b2a6
1 using System;
3 class Program
5 static int counter;
7 static int Main ()
9 FormatPrint ($"Case {1}");
10 if (counter != 1)
11 return 1;
13 FormatPrint ($"Case {3}");
14 if (counter != 2)
15 return 2;
17 return 0;
20 static void FormatPrint (FormattableString message)
22 Console.WriteLine(message);
23 ++counter;