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
[interp] Reduce computation under calc_section mutex
[mono-project.git]
/
mcs
/
tests
/
test-878.cs
blob
659b77a72cb2e0710f56e742f7b22ca84bb90ba3
1
using
System
;
2
3
public class
Tests
4
{
5
public static int
Main
()
6
{
7
return
0
;
8
}
9
10
void
Test1
()
11
{
12
int
a
;
13
if
(
true
) {
14
a
=
0
;
15
}
else
{
16
a
=
1
;
17
}
18
19
Console
.
WriteLine
(
a
);
20
}
21
22
void
Test2
()
23
{
24
int
a
;
25
if
(
false
) {
26
a
=
0
;
27
}
else
{
28
a
=
1
;
29
}
30
31
Console
.
WriteLine
(
a
);
32
}
33
}
34