2016-12-01 01:35:25 +03:00
|
|
|
error[E0423]: expected value, found module `a`
|
2016-12-01 01:35:25 +03:00
|
|
|
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:27:5
|
|
|
|
|
|
|
|
|
27 | a.I
|
2017-03-08 22:15:12 +03:00
|
|
|
| ^--
|
|
|
|
| |
|
|
|
|
| did you mean `a::I`?
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2016-12-01 01:35:25 +03:00
|
|
|
error[E0423]: expected value, found module `a`
|
2017-12-10 23:29:24 +03:00
|
|
|
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:32:5
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-12-10 23:29:24 +03:00
|
|
|
32 | a.g()
|
2017-03-08 22:15:12 +03:00
|
|
|
| ^----
|
|
|
|
| |
|
|
|
|
| did you mean `a::g(...)`?
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2016-12-01 01:35:25 +03:00
|
|
|
error[E0423]: expected value, found module `a`
|
2017-12-10 23:29:24 +03:00
|
|
|
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:37:5
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-12-10 23:29:24 +03:00
|
|
|
37 | a.b.J
|
2017-03-08 22:15:12 +03:00
|
|
|
| ^--
|
|
|
|
| |
|
|
|
|
| did you mean `a::b`?
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2016-12-01 01:35:25 +03:00
|
|
|
error[E0423]: expected value, found module `a::b`
|
2017-12-10 23:29:24 +03:00
|
|
|
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:42:5
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-12-10 23:29:24 +03:00
|
|
|
42 | a::b.J
|
2017-04-18 13:28:05 +02:00
|
|
|
| ^^^---
|
|
|
|
| | |
|
|
|
|
| | did you mean `I`?
|
2017-03-08 22:15:12 +03:00
|
|
|
| did you mean `a::b::J`?
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2016-12-01 01:35:25 +03:00
|
|
|
error[E0423]: expected value, found module `a`
|
2017-12-10 23:29:24 +03:00
|
|
|
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:47:5
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-12-10 23:29:24 +03:00
|
|
|
47 | a.b.f();
|
2017-03-08 22:15:12 +03:00
|
|
|
| ^--
|
|
|
|
| |
|
|
|
|
| did you mean `a::b`?
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2016-12-01 01:35:25 +03:00
|
|
|
error[E0423]: expected value, found module `a::b`
|
2017-12-10 23:29:24 +03:00
|
|
|
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:50:12
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-12-10 23:29:24 +03:00
|
|
|
50 | v.push(a::b);
|
2017-03-08 22:15:12 +03:00
|
|
|
| ^^^-
|
|
|
|
| |
|
|
|
|
| did you mean `I`?
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2016-12-01 01:35:25 +03:00
|
|
|
error[E0423]: expected value, found module `a::b`
|
2017-12-10 23:29:24 +03:00
|
|
|
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:55:5
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-12-10 23:29:24 +03:00
|
|
|
55 | a::b.f()
|
2017-04-18 13:28:05 +02:00
|
|
|
| ^^^-----
|
|
|
|
| | |
|
|
|
|
| | did you mean `I`?
|
2017-03-08 22:15:12 +03:00
|
|
|
| did you mean `a::b::f(...)`?
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2016-12-01 01:35:25 +03:00
|
|
|
error[E0423]: expected value, found module `a::b`
|
2017-12-10 23:29:24 +03:00
|
|
|
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:60:5
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-12-10 23:29:24 +03:00
|
|
|
60 | a::b
|
2017-03-08 22:15:12 +03:00
|
|
|
| ^^^-
|
|
|
|
| |
|
|
|
|
| did you mean `I`?
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2016-12-01 01:35:25 +03:00
|
|
|
error[E0423]: expected function, found module `a::b`
|
2017-12-10 23:29:24 +03:00
|
|
|
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:65:5
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-12-10 23:29:24 +03:00
|
|
|
65 | a::b()
|
2017-03-08 22:15:12 +03:00
|
|
|
| ^^^-
|
|
|
|
| |
|
|
|
|
| did you mean `I`?
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-05-29 18:46:29 +02:00
|
|
|
error[E0601]: main function not found
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to 10 previous errors
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2018-02-19 21:40:25 +01:00
|
|
|
You've got a few errors: E0423, E0601
|
|
|
|
If you want more information on an error, try using "rustc --explain E0423"
|