summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/sealed-traits/re-exported-trait.stderr
blob: 9f2291e6825a6af17bbee42d3b555d30510d442f (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 1 previous error

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