2024-04-15 23:01:02 +02:00
|
|
|
//@ known-bug: #121363
|
2024-12-08 16:52:32 +01:00
|
|
|
//@ compile-flags: -Zmir-enable-passes=+GVN --crate-type lib
|
2024-04-15 23:01:02 +02:00
|
|
|
|
|
|
|
|
#![feature(trivial_bounds)]
|
|
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
struct TwoStrs(str, str)
|
|
|
|
|
where
|
|
|
|
|
str: Sized;
|