Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
nontype20.C
blob: e4aba322771abfe916595541ba0e70be3324eaf8 [
file
] [
log
] [
blame
]
// PR c++/48003
// { dg-options "-fpermissive -w" }
// Test that we allow integer overflow in constant exprs with -fpermissive
template
<
int
N
>
struct
test
{
typedef
test
<
N
-
1
>
prior
;
};
test
<-
2147483647
-
1
>
f
;