Merge pull request #1304 from slluis/mac-proxy-autoconfig
[mono.git] / mcs / errors / cs0426-4.cs
1 // CS0426: The nested type `WriteLINE' does not exist in the type `System.Console'
2 // Line: 10
3
4 using System;
5
6 public class Test
7 {
8         public static void Main ()
9         {
10                 var x = nameof (Console.WriteLINE);
11         }
12 }