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
/
cs0168-3.cs
blob
e57dca5b94311ed449076fa5cf613814820cdac2
1
// CS0168: 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
}