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
/
cs0023-3.cs
blob
800029d30ca241217273aa302e94e8ca4b673175
1
// CS0023: The `.' operator cannot be applied to operand of type `void'
2
// Line: 12
3
4
using
System
;
5
6
public class
Testing
7
{
8
public static void
DoNothing
() {}
9
10
public static void
Main
()
11
{
12
Console
.
WriteLine
(
DoNothing
().
ToString
());
13
}
14
}