Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-exmethod-08.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b3295fdd1852c7c331210d91433851fe93435a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

// 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);
	}
}