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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs1632-2.cs
blob
fe6c1c2dc663cc6f77deb6e6e7b9d8602d881eb1
1
// CS1632: Control cannot leave the body of an anonymous method
2
// Line: 12
3
4
using
System
;
5
6
class
X
7
{
8
public static void
Main
()
9
{
10
while
(
true
) {
11
Action a
= () => {
12
break
;
13
};
14
}
15
}
16
}