summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/non_lifetime_binders/object-lifetime-default-for-late.rs
blob: 9830241c3770cc7926acb4e78a477dd94af4bf57 (plain)
1
2
3
4
5
6
7
// check-pass
// compile-flags: --crate-type=lib

#![feature(non_lifetime_binders)]
//~^ WARN the feature `non_lifetime_binders` is incomplete

pub fn f<T>() where for<U> (T, U): Copy {}