// Compiler options: -langversion:linq // 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 = null; List second = null; IEnumerable q = first.Except(second); } }