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
Remove debugging code from generated code
[mono-project.git]
/
mcs
/
errors
/
gcs0411-2.cs
blob
3cebd543739be5370d55136610c8fb96b3df018a
1
// gcs0411.cs: The type arguments for method `Foo' cannot be infered from the usage. Try specifying the type arguments explicitly
2
// Line: 15
3
4
class
Test
<
A
>
5
{
6
public void
Foo
<
V
,
W
> (
V v
,
V w
)
7
{ }
8
}
9
10
class
X
11
{
12
static void
Main
()
13
{
14
Test
<
float
>
test
=
new
Test
<
float
> ();
15
test
.
Foo
(
8
,
9
);
16
}
17
}
18