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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs0029-9.cs
blob
fa42f04e23f8871258f7b02e94d2ff39320fb196
1
// CS0029: Cannot implicitly convert type `T2' to `T1'
2
// Line: 8
3
4
class
Test
5
{
6
static void
Foo
<
T1
,
T2
> (
T1 t1
,
T2 t2
)
7
{
8
T1 a
=
default
(
T2
);
9
}
10
}