Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr77948-2.C
blob: 7b84c5fdea155c27c95ba6888cf9086e13a0c73a [
file
] [
log
] [
blame
]
// PR c++/77948
// { dg-do compile }
// { dg-options "-std=gnu++11 -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" }
}