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
PR c++/56973, DR 696 - capture constant variables only as needed.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
pr79435.C
blob
a9e467122f55c19932de82d041292859368ba2bd
1
// PR c++/79435
2
// { dg-do compile { target c++14 } }
3
4
struct A;
5
extern A a; // { dg-error "'a' has incomplete type" }
6
template < int > int f = a.x;