about summary refs log tree commit diff
path: root/tests/ui/privacy/private-inferred-type-2.stderr
blob: 8a905f5d88ab37ec7c572a962c22090be73ba4f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: type `Priv` is private
  --> $DIR/private-inferred-type-2.rs:17:5
   |
LL |     m::Pub::get_priv;
   |     ^^^^^^^^^^^^^^^^ private type

error: type `Priv` is private
  --> $DIR/private-inferred-type-2.rs:18:5
   |
LL |     m::Pub::static_method;
   |     ^^^^^^^^^^^^^^^^^^^^^ private type

error: type `ext::Priv` is private
  --> $DIR/private-inferred-type-2.rs:19:5
   |
LL |     ext::Pub::static_method;
   |     ^^^^^^^^^^^^^^^^^^^^^^^ private type

error: aborting due to 3 previous errors