Files
rust/src/test/ui/issues/issue-4759.rs

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

21 lines
279 B
Rust
Raw Normal View History

// run-pass
// pretty-expanded FIXME #23616
#![allow(non_shorthand_field_patterns)]
#![feature(box_syntax)]
struct T { a: Box<isize> }
trait U {
fn f(self);
}
impl U for Box<isize> {
fn f(self) { }
}
pub fn main() {
let T { a: a } = T { a: box 0 };
a.f();
}