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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs1626.cs
blob
1165409b574fa9451e659d606ca099b1ade79829
1
// CS1626: 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
}