blob: 45e72d2924fe4760ea04639122ec26e0c23017ad [file] [log] [blame]
Davide Italianoa2275912015-07-12 22:10:56 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
2// expected-no-diagnostics
3
4struct S {};
5int x;
6S&& y1 = (S&&)x;
7S&& y2 = reinterpret_cast<S&&>(x);
8S& z1 = (S&)x;