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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
test-541.cs
blob
6b024228830ff4be07e66e868fa3c88e580e4671
1
using
System
;
2
3
class
ClassMain
4
{
5
delegate void
D
(
int
i
);
6
7
public static void
Main
()
8
{
9
if
(
true
) {
10
const bool
test
=
false
;
11
}
else
{
12
test
=
false
;
13
}
14
15
D d
=
delegate
(
int
test
)
{ }
;
16
}
17
18
static bool
test
{
19
set
{
20
}
21
}
22
}
23