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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0469.cs
blob
eac14b77a728505ad3e93eb32457ed48e2cced31
1
// CS0469: The `goto case' value is not implicitly convertible to type `char'
2
// Line: 16
3
// Compiler options: -warnaserror -warn:2
4
5
class
Test
6
{
7
static void
Main
()
8
{
9
char
c
=
'c'
;
10
switch
(
c
)
11
{
12
case
'A'
:
13
break
;
14
15
case
'a'
:
16
goto case
65
;
17
}
18
}
19
}