a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
18 lines
372 B
C#
18 lines
372 B
C#
|
|
// 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<int> first = new List<int> ();
|
|
List<int> second = new List<int> ();
|
|
|
|
IEnumerable<int> q = first.Except(second);
|
|
}
|
|
}
|