summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/sealed-traits/re-exported-trait.stderr
blob: b630565d0237f484d33c2ea0ff394c7675436967 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0603]: module `b` is private
  --> $DIR/re-exported-trait.rs:11:9
   |
LL | impl a::b::Trait for S {}
   |         ^ private module
   |
note: the module `b` is defined here
  --> $DIR/re-exported-trait.rs:5:5
   |
LL |     mod b {
   |     ^^^^^
help: consider importing this trait through its public re-export instead
   |
LL | impl a::Trait for S {}
   |      ~~~~~~~~

error: aborting due to previous error

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