(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1y/
pr79463.C
// PR c++/79463
// { dg-options "-g" }
// { dg-do compile { target c++14 } }

struct A;
extern A a; // { dg-error "'a' has incomplete type" }
template < int > int f = a.x;