Test that object bounds are preferred over global where clause bounds
This commit is contained in:
parent
87f63ca258
commit
0476a875d1
28
src/test/ui/trivial-bounds-object.rs
Normal file
28
src/test/ui/trivial-bounds-object.rs
Normal file
@ -0,0 +1,28 @@
|
||||
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// http://rust-lang.org/COPYRIGHT.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// run-pass
|
||||
// Check that the object bound dyn A + 'a: A is preferred over the
|
||||
// where clause bound dyn A + 'static: A.
|
||||
|
||||
#![allow(unused)]
|
||||
|
||||
trait A {
|
||||
fn test(&self);
|
||||
}
|
||||
|
||||
fn foo(x: &dyn A)
|
||||
where
|
||||
dyn A + 'static: A, // Using this bound would lead to a lifetime error.
|
||||
{
|
||||
x.test();
|
||||
}
|
||||
|
||||
fn main () {}
|
Loading…
Reference in New Issue
Block a user