mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-22 20:03:37 +00:00
16 lines
497 B
Rust
16 lines
497 B
Rust
![]() |
// During unwinding, an implementation of Drop is possible to clean up resources.
|
||
|
// This test implements drop in both a main function and its static library.
|
||
|
// If the test succeeds, a Rust program being a static library does not affect Drop implementations.
|
||
|
// See https://github.com/rust-lang/rust/issues/10434
|
||
|
|
||
|
//@ ignore-cross-compile
|
||
|
//@ needs-unwind
|
||
|
|
||
|
use run_make_support::{run, rustc};
|
||
|
|
||
|
fn main() {
|
||
|
rustc().input("lib.rs").run();
|
||
|
rustc().input("main.rs").run();
|
||
|
run("main");
|
||
|
}
|