Merge pull request #5636 from BrzVlad/fix-xmm-scan
[mono.git] / mcs / errors / cs0234.cs
1 // CS0234: The type or namespace name `Linq' does not exist in the namespace `System'. Are you missing `System.Core' assembly reference?
2 // Line: 5
3 // Compiler options: -noconfig
4
5 using System.Linq;
6
7 class C
8 {
9         public static void Main ()
10         {
11         }
12 }