<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1640</ErrorName>
  <Examples>
    <string>// CS1640: foreach statement cannot operate on variables of type `T' because it contains multiple implementation of `System.Collections.Generic.IEnumerable&lt;T&gt;'. Try casting to a specific implementation
// Line: 11

using System.Collections.Generic;

public class C
{
	public static void Test&lt;T&gt;(T t) 
		where T: IEnumerable&lt;string&gt;, IEnumerable&lt;int&gt;
	{
		foreach (int i in t)
		{
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>