OSDN Git Service

PR c++/6057
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / rv-cast.C
1 // { dg-options "-std=c++0x" }
2
3 void f(int i)
4 {
5   int&& r = static_cast<int&&>(i);
6 }