[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0150-2.cs
blob7e20f3f572edc1034dab86c7d482e87b98817ca2
1 // CS0150: A constant value is expected
2 // Line : 14
4 using System;
6 public class Blah
8 static readonly string Test;
10 public static void Main ()
12 string s = null;
13 switch (s) {
14 case Blah.Test:
15 break;