Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-interpolation-03.cs
1 using System;
2
3 public static class Test {
4         public static void Main() {
5                 RunTest(() => Console.WriteLine ($"Initializing the map took {1}ms"));
6         }
7
8         static void RunTest (Action callback)
9          {
10                 callback();
11         }
12 }