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.cs
blob
ee193bafa79b7a2741016976cc937d05d6b5273a
1
// CS0168: The variable `p' is declared but never used
2
// Line: 9
3
// Compiler options: -warn:3 -warnaserror
4
5
class
Main
6
{
7
public void
Method
(
int
i
)
8
{
9
long
p
;
10
}
11
}