Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-exmethod-08.cs
1
2 // It tests collision between multiple external methods and also whether
3 // we import external methods when same namespace does not exist locally
4
5 using System.Collections.Generic;
6 using System.Linq;
7
8 class C
9 {
10         public static void Main ()
11         {
12                 List<int> first  = new List<int> ();
13                 List<int> second = new List<int> ();
14
15                 IEnumerable<int> q = first.Except(second);
16         }
17 }