1// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++112// expected-no-diagnostics3 4struct S {};5int x;6S&& y1 = (S&&)x;7S&& y2 = reinterpret_cast<S&&>(x);8S& z1 = (S&)x;9