Richard Trieu | 17ddb82 | 2015-01-10 06:04:18 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -fsyntax-only -Wself-move -std=c++11 -verify %s |
| 2 | |
| 3 | // definitions for std::move |
| 4 | namespace std { |
| 5 | inline namespace foo { |
| 6 | template <class T> struct remove_reference { typedef T type; }; |
| 7 | template <class T> struct remove_reference<T&> { typedef T type; }; |
| 8 | template <class T> struct remove_reference<T&&> { typedef T type; }; |
| 9 | |
| 10 | template <class T> typename remove_reference<T>::type &&move(T &&t); |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | void int_test() { |
| 15 | int x = 5; |
| 16 | x = std::move(x); // expected-warning{{explicitly moving}} |
| 17 | (x) = std::move(x); // expected-warning{{explicitly moving}} |
| 18 | |
| 19 | using std::move; |
| 20 | x = move(x); // expected-warning{{explicitly moving}} |
| 21 | } |
| 22 | |
| 23 | int global; |
| 24 | void global_int_test() { |
| 25 | global = std::move(global); // expected-warning{{explicitly moving}} |
| 26 | (global) = std::move(global); // expected-warning{{explicitly moving}} |
| 27 | |
| 28 | using std::move; |
| 29 | global = move(global); // expected-warning{{explicitly moving}} |
| 30 | } |
| 31 | |
| 32 | class field_test { |
| 33 | int x; |
| 34 | field_test(field_test&& other) { |
| 35 | x = std::move(x); // expected-warning{{explicitly moving}} |
| 36 | x = std::move(other.x); |
| 37 | other.x = std::move(x); |
| 38 | other.x = std::move(other.x); // expected-warning{{explicitly moving}} |
| 39 | } |
| 40 | }; |