rustc/tests/crashes/121176.rs
2025-02-17 11:14:05 +01:00

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);
}