mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-19 01:16:10 +00:00
8 lines
131 B
Rust
8 lines
131 B
Rust
//@ run-pass
|
|
|
|
fn main() {
|
|
enum Void {}
|
|
let _ = std::rc::Weak::<Void>::new();
|
|
let _ = std::sync::Weak::<Void>::new();
|
|
}
|