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
2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
gtest-optional-08.cs
blob
d148076049805189b8e5a4e617e951027cef5ef5
1
public class
Tests
2
{
3
string
s
;
4
5
private
Tests
(
string
arg
=
"long"
)
6
{
7
this
.
s
=
arg
;
8
}
9
10
public
Tests
(
int
other
)
11
{
12
}
13
14
public static int
Main
()
15
{
16
var
v
=
new
Tests
();
17
if
(
v
.
s
!=
"long"
)
18
return
1
;
19
20
return
0
;
21
}
22
}