summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/issue-82126-mismatched-subst-and-hir.rs
blob: 2c8a700bc2ea37cc53343d5edc97d9d7eaa116df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Regression test for #82126. Checks that mismatched lifetimes and types are
// 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<'_> {
    //~^ ERROR this struct takes 0 lifetime arguments but 1 lifetime argument was supplied
    //~^^ ERROR this struct takes 1 generic argument but 0 generic arguments were supplied
    LockedMarket(generator.lock().unwrap().buy())
    //~^ ERROR cannot return value referencing temporary
}

struct LockedMarket<T>(T);

fn main() {}