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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs1502-8.cs
blob
5be2d15c8f7d7bfbb81ade3d4f2bf85348631fe9
1
// CS1502: The best overloaded method match for `C.Test_C(System.Type, params int[])' has some invalid arguments
2
// Line: 10
3
4
using
System
;
5
6
public class
C
7
{
8
public static int
Main
()
9
{
10
return
Test_C
(
typeof
(
C
),
null
,
null
);
11
}
12
13
static int
Test_C
(
Type t
,
params int
[]
a
)
14
{
15
return
1
;
16
}
17
}