summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0234.cs
blob: a4ebec291b29a365922da74047642bad13044eb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0234: The type or namespace name `Linq' does not exist in the namespace `System'. Are you missing `System.Core' assembly reference?
// Line: 5
// Compiler options: -noconfig

using System.Linq;

class C
{
	public static void Main ()
	{
	}
}