blob: 180a75e3dfc545bea56e5db64e03197a4718730c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Test that cross-borrowing (implicitly converting from `Box<T>` to `&T`) is
// forbidden when `T` is a trait.
struct Foo;
trait Trait { fn foo(&self) {} }
impl Trait for Foo {}
pub fn main() {
let x: Box<dyn Trait> = Box::new(Foo);
let _y: &dyn Trait = x; //~ ERROR E0308
//~| expected reference `&dyn Trait`
//~| found struct `Box<dyn Trait>`
}
|