mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
20 lines
283 B
Rust
20 lines
283 B
Rust
// run-pass
|
|
|
|
#![allow(unused)]
|
|
|
|
struct S;
|
|
|
|
impl S {
|
|
fn func<'a, U>(&'a self) -> U {
|
|
todo!()
|
|
}
|
|
}
|
|
|
|
fn dont_crash<'a, U>() -> U {
|
|
S.func::<'a, U>()
|
|
//~^ WARN cannot specify lifetime arguments explicitly
|
|
//~| WARN this was previously accepted
|
|
}
|
|
|
|
fn main() {}
|