Updated to be more consistent
[mono.git] / mcs / errors / cs0246-10.cs
1 // cs0246-10.cs: The type or namespace name `Nonexistant' could not be found (are you missing a using directive or an assembly reference?)
2
3 using System;
4 using Nonexistant;
5
6 class X
7 {
8         static void Main () {
9         }
10 }