]> git.lizzy.rs Git - rust.git/blob - src/test/ui/trivial-bounds-inconsistent-sized.rs
Add tests for trivial bounds
[rust.git] / src / test / ui / trivial-bounds-inconsistent-sized.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 `Sized` bounds
13 #![feature(trivial_bounds)]
14 #![allow(unused)]
15
16 trait A {}
17
18 impl A for i32 {}
19
20 struct T<X: ?Sized> {
21     x: X,
22 }
23
24 struct S(str, str) where str: Sized;
25
26 fn unsized_local() where for<'a> T<A + 'a>: Sized {
27     let x: T<A> = *(Box::new(T { x: 1 }) as Box<T<A>>);
28 }
29
30 fn return_str() -> str where str: Sized {
31     *"Sized".to_string().into_boxed_str()
32 }
33
34 fn main() {}