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

using System;
using Nonexistant;

class X
{
	static void Main () {
	}
}