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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
test-702.cs
blob
ac3422978d9e865b5620b0603dac96faa84b1f0f
1
struct
S
2
{
3
int
a
;
4
int
b
;
5
6
public
S
(
int
i
)
7
{
8
this
=
new
S
();
9
}
10
11
public
S
(
string
s
,
int
a
)
12
{
13
this
.
a
=
a
;
14
this
.
b
=
2
;
15
}
16
17
public static void
Main
()
18
{
19
S s
=
new
S
(
1
);
20
}
21
}