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
/
cs0103-2.cs
blob
3ed7e3586c30685abc14f46e855b62b6a3613808
1
// CS0103: The name `i' does not exist in the current context
2
// Line: 9
3
// Compiler options: -r:CS0103-2-lib.dll
4
5
class
A
:
C
6
{
7
void
Test
()
8
{
9
i
=
0
;
10
}
11
}