rust/src/test/ui/privacy/legacy-ctor-visibility.stderr

14 lines
439 B
Plaintext
Raw Normal View History

2019-08-03 14:59:05 +00:00
error[E0423]: expected function, tuple struct or tuple variant, found struct `S`
--> $DIR/legacy-ctor-visibility.rs:9:13
2018-08-08 12:28:26 +00:00
|
2019-08-03 14:59:05 +00:00
LL | / fn f() {
LL | | S(10);
| | ^ help: a function with a similar name exists: `f`
LL | |
LL | | }
| |_________- similarly named function `f` defined here
2018-08-08 12:28:26 +00:00
error: aborting due to previous error
2019-08-03 14:59:05 +00:00
For more information about this error, try `rustc --explain E0423`.