summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0150-2.cs
blob: 7e20f3f572edc1034dab86c7d482e87b98817ca2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// CS0150: A constant value is expected
// Line : 14

using System;

public class Blah
{
	static readonly string Test;
	
	public static void Main ()
	{
		string s = null;
		switch (s) {
			case Blah.Test:
				break;
		}
	}
}