summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-41.cs
blob: b864562f878a1a25865cda3d5608fa6e7ae8d4a9 (plain)
1
2
3
4
5
6
7
8
9
// CS1525: Unexpected symbol `{', expecting `:'
// Line: 6

class MyClass
{
	void a<T> () where T
	{
	}
}