Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr77948-6.C
blob: b8a13b5540a4e9a1c4e2c2688602d4225652c497 [
file
] [
log
] [
blame
]
// PR c++/77948
// { dg-do compile }
// { dg-options "-std=c++98 -std=c++11" }
void
foo
()
{
auto
qfp
=
1.0q
;
// { dg-error "unable to find numeric literal operator" }
auto
Qfp
=
1.0Q
;
// { dg-error "unable to find numeric literal operator" }
}