2018-09-17 21:37:20 +00:00
error[E0423]: expected value, found struct `String`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-22692.rs:2:13
2018-09-17 21:37:20 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _ = String.new();
2024-11-08 16:57:53 +00:00
| ^^^^^^
|
help: use the path separator to refer to an item
|
LL | let _ = String::new();
| ~~
2018-09-17 21:37:20 +00:00
2022-08-10 12:06:27 +00:00
error[E0423]: expected value, found struct `String`
--> $DIR/issue-22692.rs:6:13
|
LL | let _ = String.default;
2024-11-08 16:57:53 +00:00
| ^^^^^^
|
help: use the path separator to refer to an item
|
LL | let _ = String::default;
| ~~
2022-08-10 12:06:27 +00:00
error[E0423]: expected value, found struct `Vec`
--> $DIR/issue-22692.rs:10:13
|
LL | let _ = Vec::<()>.with_capacity(1);
2024-11-08 16:57:53 +00:00
| ^^^^^^^^^
|
help: use the path separator to refer to an item
|
LL | let _ = Vec::<()>::with_capacity(1);
| ~~
2022-08-10 12:06:27 +00:00
error[E0423]: expected value, found struct `std::cell::Cell`
--> $DIR/issue-22692.rs:17:9
|
LL | ::std::cell::Cell
| ^^^^^^^^^^^^^^^^^
...
LL | Type!().get();
| ------- in this macro invocation
|
= note: this error originates in the macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info)
help: use the path separator to refer to an item
|
LL | <Type!()>::get();
| ~~~~~~~~~~~
error[E0423]: expected value, found struct `std::cell::Cell`
--> $DIR/issue-22692.rs:17:9
|
LL | ::std::cell::Cell
| ^^^^^^^^^^^^^^^^^
...
LL | Type! {}.get;
| -------- in this macro invocation
|
= note: this error originates in the macro `Type` (in Nightly builds, run with -Z macro-backtrace for more info)
help: use the path separator to refer to an item
|
LL | <Type! {}>::get;
| ~~~~~~~~~~~~
error[E0423]: expected value, found struct `Vec`
--> $DIR/issue-22692.rs:26:9
|
LL | Vec.new()
2024-11-08 16:57:53 +00:00
| ^^^
2022-08-10 12:06:27 +00:00
...
LL | let _ = create!(type method);
| -------------------- in this macro invocation
|
= note: this error originates in the macro `create` (in Nightly builds, run with -Z macro-backtrace for more info)
2024-11-08 16:57:53 +00:00
help: use the path separator to refer to an item
|
LL | Vec::new()
| ~~
2022-08-10 12:06:27 +00:00
error[E0423]: expected value, found struct `Vec`
--> $DIR/issue-22692.rs:31:9
|
LL | Vec.new
2024-11-08 16:57:53 +00:00
| ^^^
2022-08-10 12:06:27 +00:00
...
LL | let _ = create!(type field);
| ------------------- in this macro invocation
|
= note: this error originates in the macro `create` (in Nightly builds, run with -Z macro-backtrace for more info)
2024-11-08 16:57:53 +00:00
help: use the path separator to refer to an item
|
LL | Vec::new
| ~~
2022-08-10 12:06:27 +00:00
error[E0423]: expected value, found struct `std::cell::Cell`
--> $DIR/issue-22692.rs:17:9
|
LL | ::std::cell::Cell
| ^^^^^^^^^^^^^^^^^
...
LL | let _ = create!(macro method);
| --------------------- in this macro invocation
|
= note: this error originates in the macro `Type` which comes from the expansion of the macro `create` (in Nightly builds, run with -Z macro-backtrace for more info)
help: use the path separator to refer to an item
|
LL | <Type!()>::new(0)
| ~~~~~~~~~~~
error: aborting due to 8 previous errors
2018-09-17 21:37:20 +00:00
For more information about this error, try `rustc --explain E0423`.