repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1644-43.cs
blob
c212fe909306282ac359734c2ffff973922a1200
1
// CS1644: Feature `nameof operator' cannot be used because it is not part of the C# 5.0 language specification
2
// Line: 10
3
// Compiler options: -langversion:5
4
5
class
C
6
{
7
static void
Main
()
8
{
9
var
n
=
nameof
(
Main
);
10
}
11
}