mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-04 19:29:07 +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);
|
||
|
}
|