[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0117-9.cs
1 // CS0117: `System.Console' does not contain a definition for `WriteLINE'
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 }