1  /* { dg-do compile } */
       2  /* { dg-options "-dA" } */
       3  /* PR debug/12934.  */
       4  
       5  static inline int foo ()
       6  {
       7    return 42;
       8  }
       9  
      10  void bar (int *);
      11  
      12  void baz ()
      13  {
      14    int a[foo ()];
      15    bar (a);
      16  }