blob: 5cb82eac417f28fc8381e702e8056ffb38904be8 [file] [log] [blame]
//! Regression test for #121363
//@ compile-flags: -Zmir-enable-passes=+GVN --crate-type lib
//@ build-pass
#![feature(trivial_bounds)]
#![expect(trivial_bounds)]
#[derive(Debug)]
struct TwoStrs(str, str)
where
str: Sized;