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-3.cs
blob
dcdc24a20ba49d0764502b650a56770ebac5d6c0
1
// CS0103: The name `test' does not exist in the current context
2
// Line: 11
3
4
class
ClassMain
5
{
6
public static void
Main
()
7
{
8
if
(
true
) {
9
const bool
test
=
false
;
10
}
11
test
=
false
;
12
}
13
14
static bool
Test
{
15
set
{
16
}
17
}
18
}
19