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-699.cs
blob
f98f2e9190b43dcb2e59d52f16eca3045b10c29d
1
// Compiler options: -r:test-699-lib.dll
2
3
public class
D
:
C
4
{
5
string
_message
=
""
;
6
7
public
D
(
string
msg
)
8
{
9
_message
=
msg
;
10
}
11
12
public string
message
13
{
14
get
{ return _message; }
15
}
16
17
public static void
Main
()
18
{
19
}
20
}