rust/tests/ui/traits/non-lifetime-via-dyn-builtin.rs
2024-02-16 20:02:50 +00:00

17 lines
308 B
Rust

//@ revisions: current next
//@[next] compile-flags: -Znext-solver
//@ check-pass
#![feature(non_lifetime_binders)]
//~^ WARN the feature `non_lifetime_binders` is incomplete and may not be safe
fn trivial<A>()
where
for<B> dyn Fn(A, *const B): Fn(A, *const B),
{
}
fn main() {
trivial::<u8>();
}