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-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0168-2.cs
blob
c53df44d12e80d9c0bdc7a073eb0ec46c8395639
1
// cs0168-2.cs: The variable `e' is declared but never used
2
// Line: 10
3
// Compiler options: -warn:3 -warnaserror
4
5
using
System
;
6
7
public class
ConsoleStub
{
8
public static void
Main
(
string
[]
args
) {
9
try
{
10
}
catch
(
Exception e
) {
11
}
12
}
13
}
14