]> git.lizzy.rs Git - rust.git/blob - src/test/ui/trivial-bounds-inconsistent-copy.rs
Auto merge of #50710 - Zoxc:value_to_constvalue, r=oli-obk
[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 // run-pass
12 // Check tautalogically false `Copy` bounds
13 #![feature(trivial_bounds)]
14 #![allow(unused)]
15
16 fn copy_string(t: String) -> String where String: Copy {
17     is_copy(&t);
18     let x = t;
19     drop(t);
20     t
21 }
22
23 fn copy_out_string(t: &String) -> String where String: Copy {
24     *t
25 }
26
27 fn copy_string_with_param<T>(x: String) where String: Copy {
28     let y = x;
29     let z = x;
30 }
31
32 // Check that no reborrowing occurs
33 fn copy_mut<'a>(t: &&'a mut i32) -> &'a mut i32 where for<'b> &'b mut i32: Copy {
34     is_copy(t);
35     let x = *t;
36     drop(x);
37     x
38 }
39
40 fn is_copy<T: Copy>(t: &T) {}
41
42
43 fn main() {}