summary refs log tree commit diff
path: root/src/test/ui/issues/issue-42944.stderr
blob: ba285953dbdbd8fd78774c9596e0c1461262bce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error[E0423]: expected function, found struct `B`
  --> $DIR/issue-42944.rs:9:9
   |
LL |         B(());
   |         ^ constructor is not visible here due to private fields

error[E0425]: cannot find function `B` in this scope
  --> $DIR/issue-42944.rs:15:9
   |
LL |         B(());
   |         ^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
   |
LL |     use foo::B;
   |

error: aborting due to 2 previous errors

Some errors have detailed explanations: E0423, E0425.
For more information about an error, try `rustc --explain E0423`.