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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
tests
/
test-anon-83.cs
blob
879c2c899cd426ca27680bf46e8fb1722bc1220e
1
using
System
;
2
3
public class
C
4
{
5
public event
EventHandler MyDelegate
=
delegate
{ }
;
6
7
internal void
DoSomething
(
bool
bValue
)
8
{
9
if
(!
bValue
) {
10
// It has to be here to check we are closing correctly top-block
11
return
;
12
}
13
}
14
15
public static void
Main
()
16
{
17
}
18
}
19
20