blob: c93162f7ee397c55089be12c654f281d540bb280 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS1644: Feature `nameof operator' cannot be used because it is not part of the C# 5.0 language specification
// Line: 9
// Compiler options: -langversion:5
class C
{
public static void Main ()
{
var res = nameof (C.Main);
}
}
|