repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git]
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
ice9013.d
blob
47a451b550489a581b743146be42637f6d7ad4b9
1
/*
2
TEST_OUTPUT:
3
---
4
fail_compilation/ice9013.d(9): Error: undefined identifier `missing`
5
---
6
*/
7
void
main
()
8
{
9
foreach
(
i
;
0
..
missing
)
10
int
[]
foo
=
cast
(
int
[])[
i
];
11
}