mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 17:12:53 +00:00
8 lines
75 B
Rust
8 lines
75 B
Rust
#![crate_type = "rlib"]
|
|
|
|
pub struct A;
|
|
|
|
pub fn foo1(a: A) {
|
|
drop(a);
|
|
}
|