]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/issue-91763.rs
Auto merge of #86988 - thomcc:chunky-splitz-says-no-checking, r=the8472
[rust.git] / src / test / ui / lifetimes / issue-91763.rs
1 // aux-build:issue-91763-aux.rs
2
3 #![deny(elided_lifetimes_in_paths)]
4
5 extern crate issue_91763_aux;
6
7 #[issue_91763_aux::repro]
8 fn f() -> Ptr<Thing>;
9 //~^ ERROR hidden lifetime parameters in types are deprecated
10
11 fn main() {}