summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-580.cs
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 ()
		{
		}
	}
}