Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
builtin8.C
blob: dd49977255da86caa8258955d3a982aab346827f [
file
] [
log
] [
blame
]
// PR c++/19628
// Verify that __builtin_constant_p may appear in a constant-expression.
// { dg-do compile }
template
<
int
I
>
int
f
(
int
x
[
__builtin_constant_p
(
I
)])
{
return
x
[
0
];
}
int
g
()
{
int
a
[
1
]
=
{
7
};
return
f
<
32
>(
a
);
}