rust/tests/ui/lifetimes/issue-91763.rs
2024-11-27 07:18:25 -08:00

11 lines
228 B
Rust

//@ 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() {}