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
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-914.cs
blob
8366f7081edfb3899baec37dda08800c6d21419c
1
// CS0135: `test' conflicts with a declaration in a child block
2
// Line: 11
3
4
class
ClassMain
{
5
static bool
test
=
true
;
6
7
public static void
Main
() {
8
if
(
true
) {
9
bool
test
=
false
;
10
}
11
test
=
false
;
12
}
13
}
14