summary refs log tree commit diff
path: root/src/test/ui/privacy/legacy-ctor-visibility.stderr
blob: 4f0d72de6f1a4c815508c9816e1a398ed9de2ee7 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0423]: expected function, tuple struct or tuple variant, found struct `S`
  --> $DIR/legacy-ctor-visibility.rs:9:13
   |
LL |         fn f() {
   |         ------ similarly named function `f` defined here
LL |             S(10);
   |             ^ help: a function with a similar name exists: `f`

error: aborting due to previous error

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