]> git.lizzy.rs Git - rust.git/blob - src/test/ui/trivial-bounds-inconsistent-copy.rs
f73c96a002d43cd7f1292cf72b1e10c013ecd96d
[rust.git] / src / test / ui / trivial-bounds-inconsistent-copy.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-test FIXME(#50825)
12 // run-pass
13 // Check tautalogically false `Copy` bounds
14 #![feature(trivial_bounds)]
15 #![allow(unused)]
16
17 fn copy_string(t: String) -> String where String: Copy {
18     is_copy(&t);
19     let x = t;
20     drop(t);
21     t
22 }
23
24 fn copy_out_string(t: &String) -> String where String: Copy {
25     *t
26 }
27
28 fn copy_string_with_param<T>(x: String) where String: Copy {
29     let y = x;
30     let z = x;
31 }
32
33 // Check that no reborrowing occurs
34 fn copy_mut<'a>(t: &&'a mut i32) -> &'a mut i32 where for<'b> &'b mut i32: Copy {
35     is_copy(t);
36     let x = *t;
37     drop(x);
38     x
39 }
40
41 fn is_copy<T: Copy>(t: &T) {}
42
43
44 fn main() {}