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
/
aacmp10381.d
blob
b08889119517b219f003dc8c26839efac92e85aa
1
/*
2
TEST_OUTPUT:
3
---
4
fail_compilation/aacmp10381.d(12): Error: `>` is not defined for associative arrays
5
---
6
*/
7
8
bool
test10381
()
9
{
10
int
[
int
]
aa1
= [
0
:
1
];
11
int
[
int
]
aa2
= [
0
:
1
];
12
return
aa1
>
aa2
;
13
}