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
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-235.cs
blob
15ac30f49d3043b0b4c73717069386d12f68533b
1
//
2
// Compilation test: bug #47234
3
//
4
public class
T
{
5
6
static void
Foo
(
T t
,
T tt
)
7
{
8
}
9
10
static void
Foo
(
params object
[]
theParams
)
11
{
12
}
13
14
public static int
Main
()
15
{
16
Foo
(
new
T
(),
null
);
17
return
0
;
18
}
19
}
20
21
22
23
24
25