summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/issue-113860-2.stderr
blob: 6748bc276684a48bbf2a133d63e57d31e02e2b8b (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
error[E0449]: visibility qualifiers are not permitted here
  --> $DIR/issue-113860-2.rs:12:5
   |
LL |     pub(self) type X = Self;
   |     ^^^^^^^^^
   |
   = note: trait items always share the visibility of their trait

error: module has missing stability attribute
  --> $DIR/issue-113860-2.rs:1:1
   |
LL | / #![feature(staged_api)]
LL | |
LL | |
LL | | pub trait Trait {
...  |
LL | |
LL | | fn main() {}
   | |____________^

error: trait has missing stability attribute
  --> $DIR/issue-113860-2.rs:4:1
   |
LL | / pub trait Trait {
LL | |
LL | |     type X;
LL | |
LL | | }
   | |_^

error: implementation has missing stability attribute
  --> $DIR/issue-113860-2.rs:10:1
   |
LL | / impl Trait for u8 {
LL | |
LL | |     pub(self) type X = Self;
LL | |
LL | | }
   | |_^

error: associated type has missing stability attribute
  --> $DIR/issue-113860-2.rs:6:5
   |
LL |     type X;
   |     ^^^^^^^

error: aborting due to 5 previous errors

For more information about this error, try `rustc --explain E0449`.