mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
225 B
Rust
12 lines
225 B
Rust
// aux-build: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() {}
|