aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/990928-1.c
blob: 5658e360567f42f5dac8420421c9ad885a1baf5f (plain)
1
2
3
4
5
6
7
8
9
10
/* Make sure that debug information can be generated
   for inline functions containing incomplete type
   declarations.  */
inline int foo (void)
{
   struct imcomplete1 * ptr1;
   union incomplete2 * ptr2;
   enum incomplete3 * ptr3;
   return 1;
}