]> git.lizzy.rs Git - rust.git/blob - src/test/ui/drop/use_inline_dtor.rs
Rollup merge of #92959 - asquared31415:test-non-fn-help, r=estebank
[rust.git] / src / test / ui / drop / use_inline_dtor.rs
1 // run-pass
2 // aux-build:inline_dtor.rs
3
4 // pretty-expanded FIXME #23616
5
6 extern crate inline_dtor;
7
8 pub fn main() {
9     let _x = inline_dtor::Foo;
10 }