// PR c++/48453, DR 1287 // { dg-do compile { target c++11 } } template T&& create(); template void test() { T t(create()); (void) t; } template struct To { explicit operator T(); }; int main() { test>(); test>(); }