Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0029-19.cs
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 }