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
[Wasm] Fix memory override in mono_wasm_add_assembly
[mono-project.git]
/
mcs
/
tests
/
gtest-iter-25.cs
blob
4d039a00ccd70144ee71bc18b2d2354ff20457e3
1
using
System
.
Collections
.
Generic
;
2
3
namespace
Test
4
{
5
public static class
Program
6
{
7
public static void
Main
()
8
{
9
foreach
(
var
a
in
Test
())
10
Test
();
11
}
12
13
public static
IEnumerable
<
object
>
Test
()
14
{
15
lock
(
new object
()) {
16
yield return null
;
17
yield break
;
18
}
19
}
20
}
21
}