rust/tests/crashes/126896.rs

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

18 lines
276 B
Rust
Raw Normal View History

2024-07-04 16:44:10 -05:00
//@ known-bug: rust-lang/rust#126896
//@ compile-flags: -Zpolymorphize=on -Zinline-mir=yes
#![feature(type_alias_impl_trait)]
type Two<'a, 'b> = impl std::fmt::Debug;
fn set(x: &mut isize) -> isize {
*x
}
fn d(x: Two) {
let c1 = || set(x);
c1;
}
fn main() {
}