summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0825-2.cs
blob: f9c6128f8bee2b3727674fb1af7dd0de2227a78b (plain)
1
2
3
4
5
6
7
8
9
// CS0825: The contextual keyword `var' may only appear within a local variable declaration
// Line: 9


public class Test
{
	event var v;
}