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

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

namespace WhereProblems
{
	class MyClass<where> { }
	interface MyInterface<where> { }
	struct MyStruct<where> { }

	class Classes
	{
		class where { }
		class DER17 : where { }

		public static void Main ()
		{
		}
	}
}