rust/tests/ui/issues/issue-14399.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
413 B
Rust
Raw Normal View History

//@ run-pass
// #14399
// We'd previously ICE if we had a method call whose return
// value was coerced to a trait object. (v.clone() returns Box<B1>
// which is coerced to Box<A>).
//@ pretty-expanded FIXME #23616
#[derive(Clone)]
struct B1;
2024-02-07 02:42:01 +00:00
trait A { fn foo(&self) {} } //~ WARN method `foo` is never used
impl A for B1 {}
fn main() {
let v: Box<_> = Box::new(B1);
2019-05-28 18:47:21 +00:00
let _c: Box<dyn A> = v.clone();
}