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
tag rc1
[mcs.git]
/
errors
/
cs1626-2.cs
blob
b327a0679285a59ca3b03deeaa4467a3504f19fa
1
// cs01626.cs: Cannot yield a value in the body of a try block with a catch clause
2
// Line: 11
3
4
using
System
.
Collections
;
5
6
class
C
:
IEnumerable
7
{
8
public
IEnumerator
GetEnumerator
()
9
{
10
try
{
11
try
{
12
yield return this
;
13
}
14
finally
{}
15
}
16
catch
(
System
.
Exception
) {
17
}
18
}
19
}