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
add test to confirm behavior of Control.SetVisibleCore, and remove some redundant...
[mcs.git]
/
tests
/
test-314.cs
blob
83ecc8112a261cb82969dab2b193caa0932d227c
1
class
X
{
2
static string
a
=
"static string"
;
3
string
b
=
a
+
"string"
;
4
5
X
() {}
6
X
(
int
x
) {}
7
8
static int
Main
() {
9
if
(
new
X
().
b
!=
"static stringstring"
)
10
return
1
;
11
12
if
(
new
X
(
1
).
b
!=
"static stringstring"
)
13
return
2
;
14
return
0
;
15
}
16
}