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++/85553
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
builtin12.C
blob
1d6bb75cd77f8ded269ca6d444b9799490280a2b
1
// PR c++/85113
2
// { dg-do compile { target c++14 } }
3
4
template<bool> struct A {};
5
6
constexpr int foo()
7
{
8
A<__builtin_constant_p(0)> a{};
9
return 0;
10
}