summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/issue-113860-1.stderr
blob: c33ce26f0f6e89c9311fec1d7f6d7f813bdd8d50 (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-1.rs:12:5
   |
LL |     pub(self) fn fun() {}
   |     ^^^^^^^^^
   |
   = note: trait items always share the visibility of their trait

error: module has missing stability attribute
  --> $DIR/issue-113860-1.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-1.rs:4:1
   |
LL | / pub trait Trait {
LL | |
LL | |     fn fun() {}
LL | |
LL | | }
   | |_^

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

error: associated function has missing stability attribute
  --> $DIR/issue-113860-1.rs:6:5
   |
LL |     fn fun() {}
   |     ^^^^^^^^^^^

error: aborting due to 5 previous errors

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