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
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-809.cs
blob
3c2d5c2573b1bf96b2a6a93b860a7de136e38f7d
1
using
System
;
2
3
class
Z
4
{
5
public static int
Main
()
6
{
7
char
x
=
'●'
;
8
string
s
=
"●"
;
9
if
(
x
!=
9679
)
10
return
1
;
11
12
if
(
s
.
Length
!=
1
)
13
return
2
;
14
15
Console
.
WriteLine
(
s
);
16
return
0
;
17
}
18
}