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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs1632.cs
blob
121dcbd8e872c653ce8f3a6408beaef80161d612
1
// cs1632.cs: Control cannot leave the body of an anonymous method
2
// Line: 12
3
4
using
System
;
5
6
class
X
{
7
delegate void
T
();
8
9
static void
Main
()
10
{
11
T t
=
delegate
{
12
goto
L
;
13
};
14
15
L
:
16
Console
.
WriteLine
(
"Hello"
);
17
18
}
19
}
20
21