mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 18:21:37 +00:00
10 lines
167 B
Rust
10 lines
167 B
Rust
//@ known-bug: #121176
|
|
//@ needs-rustc-debug-assertions
|
|
use std::fmt::Debug;
|
|
|
|
static STATIC_1: dyn Debug + Sync = *();
|
|
|
|
fn main() {
|
|
println!("{:?}", &STATIC_1);
|
|
}
|