Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0138.cs
1 // CS0138: A `using' directive can only be applied to namespaces but `System.Console' denotes a type. Consider using a `using static' instead
2 // Line: 5
3
4 using System;
5 using System.Console;
6
7 class A
8 {
9         static void Main ()
10         {
11                 Console.WriteLine ("Test CS0138");
12         }
13 }