// It tests collision between multiple external methods and also whether // we import external methods when same namespace does not exist locally using System.Collections.Generic; using System.Linq; class C { public static void Main () { List first = new List (); List second = new List (); IEnumerable q = first.Except(second); } }