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
/
cs0162.cs
blob
6315f43d248fbb81ff551bb8a0da5a698c70170c
1
// CS0162: Unreachable code detected
2
// Line: 12
3
// Compiler options: -warnaserror -warn:2
4
5
using
System
;
6
7
class
E
8
{
9
public void
Method
(
int
i
)
10
{
11
throw new
ArgumentNullException
();
12
Console
.
WriteLine
(
"Once upon a time.."
);
13
}
14
}