blob: 96bf5f91196bbc2b3166ae42bea30c0773eb49f3 [file] [log] [blame]
Richard Smith9ca5c422011-10-13 22:29:44 +00001// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
Douglas Gregorce950842011-01-26 21:04:06 +00002
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}