Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-70204a.C
blob: 5ac551927e1d1fa546381ba2dc0b2cc4e62cce5c [
file
] [
log
] [
blame
]
// PR c++/70204
// { dg-do compile { target c++11 } }
int
a
;
template
<
int
N
,
int
I
>
void
fn1
()
{
const
int
x
=
I
*
a
,
y
=
x
;
fn1
<
y
,
I
>
();
// { dg-error "constant|no match" }
}
int
main
()
{
fn1
<
0
,
0
>
();
return
0
;
}