2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: issue-91763-aux.rs
|
2021-12-11 10:35:37 +01:00
|
|
|
|
|
|
|
|
#![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() {}
|