summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0446.stderr
blob: bb009260979741ba17f7064708712a37b0c3eb38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0446]: private type `foo::Bar` in public interface
  --> $DIR/E0446.rs:4:5
   |
LL |     struct Bar(u32);
   |     - `foo::Bar` declared as private
LL | 
LL |     pub fn bar() -> Bar {
   |     ^^^^^^^^^^^^^^^^^^^ can't leak private type

error: aborting due to previous error

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