2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-591.cs
bloba4dbbc68ede78b3a5251c767a6622b6c73dde4c8
1 // It's actually C# specification and csc bug
2 // https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=310363
4 class C1
6 static void Foo (string val)
8 const object obj = null;
9 switch (val) {
10 case (string) obj:
11 return;
16 class C2
18 public static void Main ()
20 const object o = null;
21 const string s = (string) o;