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

10 lines
178 B
Rust

//@ known-bug: #121363
//@ compile-flags: -Zmir-enable-passes=+GVN --crate-type lib
#![feature(trivial_bounds)]
#[derive(Debug)]
struct TwoStrs(str, str)
where
str: Sized;