1 // CS1640: foreach statement cannot operate on variables of type `T' because it contains multiple implementation of `System.Collections.Generic.IEnumerable<T>'. Try casting to a specific implementation
4 using System
.Collections
.Generic
;
8 public static void Test
<T
>(T t
)
9 where T
: IEnumerable
<string>, IEnumerable
<int>