mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 00:29:23 +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;
|