2019-05-16 22:00:27 +01:00
|
|
|
#![deny(warnings)]
|
|
|
|
|
|
|
|
struct Borked {}
|
|
|
|
|
|
|
|
impl Borked {
|
|
|
|
fn a(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run_wild<T>(b: &Borked) {
|
|
|
|
b.a::<'_, T>();
|
|
|
|
//~^ ERROR cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
|
2021-02-18 21:01:44 +01:00
|
|
|
//~| ERROR this associated function takes 0 generic arguments but 1 generic argument
|
2021-01-02 19:45:11 +01:00
|
|
|
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
2019-05-16 22:00:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|