Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lifetimes
/
issue-91763.rs
blob: 5df69cff3be7d7b64e439310d04ac26e16605350 [
file
] [
log
] [
blame
] [
edit
]
//@ aux-build:issue-91763-aux.rs
#![
deny
(
elided_lifetimes_in_paths
)]
extern
crate issue_91763_aux
;
#[
issue_91763_aux
::
repro
]
fn
f
()
->
Ptr
<
Thing
>;
//~^ ERROR hidden lifetime parameters in types are deprecated
fn
main
()
{}