1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// CS0150: A constant value is expected // Line: 13 class Program { static int Arg () { return 4; } static void Main() { var s = $"{1,Arg()}"; } }