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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0168-3.cs
blob
9f9283b5fca14782cbc66fb0f6d0b53fb6030e77
1
// cs0168-3.cs: The variable `y2' is declared but never used
2
// Line: 9
3
// Compiler options: -warn:3 -warnaserror
4
5
class
CompilerBugDemo
6
{
7
public static object
Wrong
()
8
{
9
object
y2
;
10
return null
;
11
}
12
}