repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0159-5.cs
blob
c265af85fbd593bcd2f787b434d87ed6bf528ffe
1
// CS0159: The label `a:' could not be found within the scope of the goto statement
2
// Line: 8
3
4
class
Foo
{
5
static void
Main
()
6
{
7
int
i
=
9
;
8
goto
a
;
9
if
(
i
==
9
) {
10
a
:
11
throw new
System
.
Exception
(
"huh?"
);
12
}
13
}
14
}