blob: 5824cd21f1e77290f2a3d9645c47fb89e81a4cb6 [file] [log] [blame]
Douglas Gregorce950842011-01-26 21:04:06 +00001// RUN: %clang_cc1 -std=c++0x -fsyntax-only -verify %s
2
3struct X { };
4struct Y : X { };
5
6void test_lvalue_to_rvalue_drop_cvquals(const X &x, const Y &y, const int &i) {
7 (void)(X&&)x;
8 (void)(int&&)i;
9 (void)(X&&)y;
10 (void)(Y&&)x;
11}