Lines Matching full:explicitly
16 x = std::move(x); // expected-warning{{explicitly moving}} in int_test()
17 (x) = std::move(x); // expected-warning{{explicitly moving}} in int_test()
20 x = move(x); // expected-warning{{explicitly moving}} in int_test()
25 global = std::move(global); // expected-warning{{explicitly moving}} in global_int_test()
26 (global) = std::move(global); // expected-warning{{explicitly moving}} in global_int_test()
29 global = move(global); // expected-warning{{explicitly moving}} in global_int_test()
35 x = std::move(x); // expected-warning{{explicitly moving}} in field_test()
38 other.x = std::move(other.x); // expected-warning{{explicitly moving}} in field_test()
47 a = std::move(a); // expected-warning{{explicitly moving}} in struct_test()
50 b = std::move(b); // expected-warning{{explicitly moving}} in struct_test()
51 b.a = std::move(b.a); // expected-warning{{explicitly moving}} in struct_test()
54 c = std::move(c); // expected-warning{{explicitly moving}} in struct_test()