Files
rust/tests/crashes/135128.rs

13 lines
211 B
Rust
Raw Normal View History

2025-01-12 10:11:29 +01:00
//@ known-bug: #135128
//@ compile-flags: -Copt-level=1 --edition=2021
#![feature(trivial_bounds)]
2025-01-12 10:11:29 +01:00
async fn return_str() -> str
where
str: Sized,
{
*"Sized".to_string().into_boxed_str()
}
fn main() {}