Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
traits
/
non_lifetime_binders
/
object-lifetime-default-for-late.rs
blob: e776d5f2f21adcc91e9c328d69f713d565ec6e7b [
file
] [
log
] [
blame
]
//@ 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
{}