mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +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);
|
|
}
|