repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-03-07 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
dcs0411.cs
blob
476a388ce462f512e92525171d250c0e24c0021d
1
// CS0411: The type arguments for method `C.TestCall<T>(int)' cannot be inferred from the usage. Try specifying the type arguments explicitly
2
// Line: 13
3
4
class
C
5
{
6
static void
TestCall
<
T
> (
int
i
)
7
{
8
}
9
10
public static void
Main
()
11
{
12
dynamic
d
=
0
;
13
TestCall
(
d
);
14
}
15
}