summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0246-22.cs
blob: f3171b5a68c79298fd5e148fa735aba0911fd8e8 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0246: The type or namespace name `var' could not be found. Are you missing an assembly reference?
// Line: 8

class C
{
	public static void Main ()
	{
		var[] v = new int[0];
	}
}