]> git.lizzy.rs Git - rust.git/blob - src/test/ui/drop/use_inline_dtor.rs
Rollup merge of #105955 - Nilstrieb:no-trivial-opt-wrappers-we-have-field-accesses...
[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 }