]> git.lizzy.rs Git - rust.git/blob - src/test/ui/debuginfo/late-bound-projection.rs
Sync core::simd up to rust-lang/portable-simd@2e081db92aa3ee0a4563bc28ce01bdad5b1b2efd
[rust.git] / src / test / ui / debuginfo / late-bound-projection.rs
1 // build-pass
2 // compile-flags: -Cdebuginfo=2 --crate-type=rlib
3 // Fixes issue #94998
4
5 pub trait Trait {}
6
7 pub fn run(_: &dyn FnOnce(&()) -> Box<dyn Trait + '_>) {}