2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0029-7.cs
bloba36e493685bc8681def1540085fc64e46d76f2ed
1 // CS0029: Cannot implicitly convert type `T[]' to `I[]'
2 // Line: 12
4 interface I
8 class C
10 static void Foo<T> (T [] t) where T : I
12 I [] i = t;