repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Warnings cleanup
[mcs.git]
/
tests
/
test-381.cs
blob
a8f9d728a88addeda20898298ab3e274e188e2f4
1
public class
Application
2
{
3
public static void
Main
(
string
[]
args
)
4
{
5
if
(
true
)
6
{
7
string
thisWorks
=
"nice"
;
8
System
.
Console
.
WriteLine
(
thisWorks
);
9
}
10
else
11
{
12
string
thisDoesnt
;
13
System
.
Console
.
WriteLine
();
14
thisDoesnt
=
"not so"
;
15
System
.
Console
.
WriteLine
(
thisDoesnt
);
16
}
17
}
18
}
19