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
2004-03-01 Larry Ewing <lewing@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
test-95.cs
blob
8a134a566e1eec3cea3a13ea34c9b4bb87a05625
1
class
X
{
2
3
double
d
=
0
;
4
5
X
()
6
{
7
}
8
9
static int
Main
()
10
{
11
X x
=
new
X
();
12
13
if
(
x
.
d
!=
0
)
14
return
1
;
15
16
return
0
;
17
}
18
}