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-805.cs
blob
dc4d6de67b4646cd8abdeec07b2354c1eeb6f793
1
// Compiler options: -r:test-805-lib.dll
2
3
public class
TestClass
4
{
5
public static int
Main
()
6
{
7
var
a
=
new
A
();
8
var
b
=
a
.
Test
();
9
if
(
b
.
ReturnValue
() !=
5
)
10
return
1
;
11
12
a
.
Test2
(
null
);
13
return
0
;
14
}
15
}
16
17
public class
B
18
{
19
internal int
ReturnValue
()
20
{
21
return
5
;
22
}
23
}
24
25
public class
C
26
{
27
}
28
29
public class
G
<
T
>
30
{
31
}