about summary refs log tree commit diff
path: root/tests/ui/lifetimes/issue-91763.rs
blob: 6abb64db5febae9e217c89555b491392233c6896 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ 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() {}