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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0219-4.cs
blob
3bfca0149cae72005f7b72ac57cb363b44f9e655
1
// CS0219: The variable `e' is assigned but its value is never used
2
// Line: 12
3
// Compiler options: -warn:3 -warnaserror
4
5
using
System
;
6
public class
ConsoleStub
7
{
8
public static void
Main
()
9
{
10
try
{
11
}
catch
(
Exception e
) {
12
e
=
null
;
13
}
14
}
15
}
16