aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/self-path2.rs
blob: 6441c3328f91b6cc1c041effb80e63182ed4f790 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// { dg-additional-options "-w" }
struct foo;

fn bar() -> self::foo {
    crate::foo
}

fn baz() {
    let a: foo = self::bar();

    crate::bar();

    crate::self::foo();
    // { dg-error "leading path segment .self. can only be used at the beginning of a path" "" { target *-*-* } .-1 }
}

type a = foo;
type b = crate::foo;
type c = self::foo;
type d = crate::self::foo;
// { dg-error "leading path segment .self. can only be used at the beginning of a path" "" { target *-*-* } .-1 }