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
/
cs1626.cs
blob
29f4a8ff22b9475e11aac75bcffdd5bf6851e5bc
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
yield return this
;
12
}
13
catch
{
14
}
15
}
16
}