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
/
cs0117-9.cs
blob
c10ddc0196263f1f6585a1cf9cbe39bc0394a106
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
}