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
/
gtest-089.cs
blob
63ebc9598a0b5a9a3d69864ecba9c20597b0fb68
1
using
System
;
2
3
class
Test
<
T
>
4
{
5
public void
Foo
(
T t
,
out int
a
)
6
{
7
a
=
5
;
8
}
9
10
public void
Hello
(
T t
)
11
{
12
int
a
;
13
14
Foo
(
t
,
out
a
);
15
}
16
}
17
18
class
X
19
{
20
public static void
Main
()
21
{ }
22
}