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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0308-8.cs
blob
0cf7cbd66215c765c81ce5e97c26440dcce2c1cf
1
// CS0308: The non-generic method `C.TestCall(int)' cannot be used with the type arguments
2
// Line: 13
3
4
class
C
5
{
6
static void
TestCall
(
int
i
)
7
{
8
}
9
10
public static void
Main
()
11
{
12
dynamic
d
=
0
;
13
TestCall
<
int
> (
d
);
14
}
15
}