Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0246-10.cs
1 // CS0246: The type or namespace name `Nonexistant' could not be found. Are you missing an assembly reference?
2 // Line: 5
3
4 using System;
5 using Nonexistant;
6
7 class X
8 {
9         static void Main () {
10         }
11 }
12