summaryrefslogtreecommitdiffstats
path: root/tests/ui/drop/use_inline_dtor.rs
blob: ac916de4646919650d6530a057f08409331609e8 (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass
// aux-build:inline_dtor.rs

// pretty-expanded FIXME #23616

extern crate inline_dtor;

pub fn main() {
    let _x = inline_dtor::Foo;
}