Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
lifetimes
/
issue-91763.rs
blob: 6abb64db5febae9e217c89555b491392233c6896 [
file
] [
log
] [
blame
]
//@ proc-macro: 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
()
{}