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-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0411-3.cs
blob
04c2de60ba9497f06395cdb2dedada9d7794ed69
1
// CS0411: The type arguments for method `C.Foo<T>(T)' cannot be inferred from the usage. Try specifying the type arguments explicitly
2
// Line: 12
3
4
class
C
5
{
6
static void
X
()
7
{
8
}
9
10
static void
Foo
<
T
> (
T t
)
11
{
12
Foo
(
X
());
13
}
14
}