eol
[mcs.git] / tests / gtest-exmethod-08.cs
blobb3295fdd1852c7c331210d91433851fe93435a64
2 // It tests collision between multiple external methods and also whether
3 // we import external methods when same namespace does not exist locally
5 using System.Collections.Generic;
6 using System.Linq;
8 class C
10 public static void Main ()
12 List<int> first = new List<int> ();
13 List<int> second = new List<int> ();
15 IEnumerable<int> q = first.Except(second);