rust/tests/crashes/121363.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
171 B
Rust
Raw Normal View History

2024-04-15 16:01:02 -05:00
//@ known-bug: #121363
//@ compile-flags: -Zmir-opt-level=5 --crate-type lib
#![feature(trivial_bounds)]
#[derive(Debug)]
struct TwoStrs(str, str)
where
str: Sized;