3c1f479b9d
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
13 lines
196 B
C#
13 lines
196 B
C#
// CS0117: `System.Console' does not contain a definition for `WriteLINE'
|
|
// Line: 10
|
|
|
|
using System;
|
|
|
|
public class Test
|
|
{
|
|
public static void Main ()
|
|
{
|
|
var x = nameof (Console.WriteLINE);
|
|
}
|
|
}
|