2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / decltype-1212.C
blobf9c879e9525d8941340dcc4afb46fcf67d4478c4
1 // Core 1212
2 // { dg-do compile { target c++11 } }
4 template <class T, class U> struct assert_same_type;
5 template <class T> struct assert_same_type<T,T> {};
7 int main()
9   int i;
10   assert_same_type<int&&,decltype(static_cast<int&&>(i))>();