Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
decltype73.C
blob: cbe94a898e34771d9548a3d512f9f7ee0871368d [
file
] [
log
] [
blame
]
// PR c++/91678 - wrong error with decltype and location wrapper.
// { dg-do compile { target c++11 } }
float
*
test
(
float
*
c
)
{
return
(
decltype
(
c
+
0
))(
float
*)
c
;
}