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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0411-20.cs
blob
2a92cd0001d88acd16a518b856c0547be503cccc
1
// CS0411: The type arguments for method `C.Foo<T>(System.Func<T>)' cannot be inferred from the usage. Try specifying the type arguments explicitly
2
// Line: 14
3
4
using
System
;
5
6
class
C
7
{
8
static void
Foo
<
T
> (
Func
<
T
>
a
)
9
{
10
}
11
12
static void
Main
()
13
{
14
Foo
(() =>
Main
);
15
}
16
}