mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-27 20:52:15 +00:00
10 lines
120 B
Rust
10 lines
120 B
Rust
//@ run-pass
|
|
//@ aux-build:inline_dtor.rs
|
|
|
|
|
|
extern crate inline_dtor;
|
|
|
|
pub fn main() {
|
|
let _x = inline_dtor::Foo;
|
|
}
|