rust/tests/ui/drop/issue-10028.rs

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

22 lines
390 B
Rust
Raw Normal View History

// run-pass
#![allow(dead_code)]
// aux-build:issue-10028.rs
// pretty-expanded FIXME #23616
extern crate issue_10028 as issue10028;
use issue10028::ZeroLengthThingWithDestructor;
struct Foo {
zero_length_thing: ZeroLengthThingWithDestructor
}
fn make_foo() -> Foo {
Foo { zero_length_thing: ZeroLengthThingWithDestructor::new() }
}
fn main() {
let _f:Foo = make_foo();
}