mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 11:48:30 +00:00
10 lines
178 B
Rust
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;
|