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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
990928-1.c
blob
5658e360567f42f5dac8420421c9ad885a1baf5f
1
/* Make sure that debug information can be generated
2
for inline functions containing incomplete type
3
declarations. */
4
inline
int
foo
(
void
)
5
{
6
struct
imcomplete1
*
ptr1
;
7
union
incomplete2
*
ptr2
;
8
enum
incomplete3
*
ptr3
;
9
return
1
;
10
}