repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0162.cs
blob
43691d8eb927e3486d8f6ed345f8564b51cb76e0
1
// cs0162.cs: 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
}