1 // PR c++/91678 - wrong error with decltype and location wrapper.
2 // { dg-do compile { target c++11 } }
3 
test(float * c)4 float* test(float* c) { return (decltype(c + 0))(float*)c; }
5