a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
11 lines
151 B
C#
11 lines
151 B
C#
// CS0029: Cannot implicitly convert type `T2' to `T1'
|
|
// Line: 8
|
|
|
|
class Test
|
|
{
|
|
static void Foo<T1, T2> (T1 t1, T2 t2)
|
|
{
|
|
T1 a = default (T2);
|
|
}
|
|
}
|