2021-02-14 23:03:57 -06:00
|
|
|
// Regression test for #82126. Checks that mismatched lifetimes and types are
|
2021-02-14 22:59:45 -06:00
|
|
|
// properly handled.
|
|
|
|
|
|
|
|
// edition:2018
|
|
|
|
|
|
|
|
use std::sync::Mutex;
|
|
|
|
|
|
|
|
struct MarketMultiplier {}
|
|
|
|
|
|
|
|
impl MarketMultiplier {
|
|
|
|
fn buy(&mut self) -> &mut usize {
|
|
|
|
todo!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn buy_lock(generator: &Mutex<MarketMultiplier>) -> LockedMarket<'_> {
|
2023-02-23 11:27:06 -06:00
|
|
|
//~^ ERROR struct takes 0 lifetime arguments but 1 lifetime argument was supplied
|
|
|
|
//~^^ ERROR struct takes 1 generic argument but 0 generic arguments were supplied
|
2021-02-14 22:59:45 -06:00
|
|
|
LockedMarket(generator.lock().unwrap().buy())
|
|
|
|
}
|
|
|
|
|
|
|
|
struct LockedMarket<T>(T);
|
|
|
|
|
|
|
|
fn main() {}
|