linux-packaging-mono/mcs/tests/test-nameof-01.cs

12 lines
149 B
C#
Raw Normal View History

class X
{
public static int Main ()
{
const string s = nameof (X);
System.Console.WriteLine (s);
if (s != "X")
return 1;
return 0;
}
}