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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-314.cs
blob
3d2fab33e6071750b91b160b82d130da2bd0e44f
1
class
X
{
2
static string
a
=
"static string"
;
3
string
b
=
a
+
"string"
;
4
5
X
() {}
6
X
(
int
x
) {}
7
8
public 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
}