aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3554-2.rs
blob: e455a8b2cec0e90fb64b37b85779ab7ccfc69d4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[lang = "sized"]
pub trait Sized {}

#[lang = "fn_once"]
pub trait FnOnce<Args> {
    #[lang = "fn_once_output"]
    type Output;

    extern "rust-call" fn call_once(self, args: Args) -> Self::Output;
}
trait Tr {
    fn foo();

    fn bar(&self) {
        (|| self.foo())()
        // { dg-error "no method named .foo. found in the current scope .E0599." "" { target *-*-* } .-1 }
    }
}