repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0150-2.cs
blob
7e20f3f572edc1034dab86c7d482e87b98817ca2
1
// CS0150: A constant value is expected
2
// Line : 14
3
4
using
System
;
5
6
public class
Blah
7
{
8
static readonly string
Test
;
9
10
public static void
Main
()
11
{
12
string
s
=
null
;
13
switch
(
s
) {
14
case
Blah
.
Test
:
15
break
;
16
}
17
}
18
}