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
Rebase.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr45732.c
blob
04ceaa279169891a965d5b39e35b6c3a21d738db
1
/* { dg-do compile } */
2
3
typedef
char
chars
[
5
];
4
const
chars bad_chars
[] = {
""
};
5
6
int
foo
()
7
{
8
const
chars
*
c
=
bad_chars
;
9
return
c
[
0
][
0
];
10
}