summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0446.stderr
blob: bb5ae494d6c8a5426d096367f140e7e04384ecee (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0446]: private type `Foo::Bar` in public interface
  --> $DIR/E0446.rs:14:5
   |
LL | /     pub fn bar() -> Bar { //~ ERROR E0446
LL | |         Bar(0)
LL | |     }
   | |_____^ can't leak private type

error: aborting due to previous error

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