blob: 7dc672edb54bb682d83c7ddbec584fad65a1c4b7 [file] [log] [blame]
// run-pass
#![allow(dead_code)]
#![allow(non_camel_case_types)]
// pretty-expanded FIXME #23616
struct thing { x: isize, }
impl Drop for thing {
fn drop(&mut self) {}
}
fn thing() -> thing {
thing {
x: 0
}
}
impl thing {
pub fn f(self) {}
}
pub fn main() {
let z = thing();
(z).f();
}