2017-05-27 12:58:52 -05:00
|
|
|
error[E0599]: no method named `fake` found for type `{integer}` in the current scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:5:13
|
2016-08-17 09:20:04 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | 1.fake() //~ ERROR no method
|
2016-08-17 09:20:04 -05:00
|
|
|
| ^^^^
|
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fake_method_stmt!();
|
2016-08-17 09:20:04 -05:00
|
|
|
| -------------------- in this macro invocation
|
|
|
|
|
2017-06-11 12:48:46 -05:00
|
|
|
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:11:13
|
2016-08-17 09:20:04 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | 1.fake //~ ERROR doesn't have fields
|
2016-09-28 04:27:23 -05:00
|
|
|
| ^^^^
|
2016-08-17 09:20:04 -05:00
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fake_field_stmt!();
|
2016-08-17 09:20:04 -05:00
|
|
|
| ------------------- in this macro invocation
|
|
|
|
|
2018-04-01 13:48:39 -05:00
|
|
|
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:17:15
|
2016-08-17 09:20:04 -05:00
|
|
|
|
|
2018-04-01 13:48:39 -05:00
|
|
|
LL | (1).0 //~ ERROR doesn't have fields
|
|
|
|
| ^
|
2016-08-17 09:20:04 -05:00
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fake_anon_field_stmt!();
|
2016-08-17 09:20:04 -05:00
|
|
|
| ------------------------ in this macro invocation
|
|
|
|
|
2018-05-21 03:45:11 -05:00
|
|
|
error[E0689]: can't call method `neg` on ambiguous numeric type `{float}`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:41:15
|
2018-01-03 21:18:17 -06:00
|
|
|
|
|
2018-05-21 03:45:11 -05:00
|
|
|
LL | 2.0.neg() //~ ERROR can't call method `neg` on ambiguous numeric type `{float}`
|
|
|
|
| ^^^
|
2018-01-03 21:18:17 -06:00
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | real_method_stmt!();
|
2018-01-03 21:18:17 -06:00
|
|
|
| -------------------- in this macro invocation
|
|
|
|
help: you must specify a concrete type for this numeric value, like `f32`
|
|
|
|
|
|
2018-05-21 03:45:11 -05:00
|
|
|
LL | 2.0_f32.neg() //~ ERROR can't call method `neg` on ambiguous numeric type `{float}`
|
2018-01-04 14:23:14 -06:00
|
|
|
| ^^^^^^^
|
2018-01-03 21:18:17 -06:00
|
|
|
|
2017-05-27 12:58:52 -05:00
|
|
|
error[E0599]: no method named `fake` found for type `{integer}` in the current scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:23:13
|
2016-08-17 09:20:04 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | 1.fake() //~ ERROR no method
|
2016-08-17 09:20:04 -05:00
|
|
|
| ^^^^
|
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _ = fake_method_expr!();
|
2016-08-17 09:20:04 -05:00
|
|
|
| ------------------- in this macro invocation
|
|
|
|
|
2017-06-11 12:48:46 -05:00
|
|
|
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:29:13
|
2016-08-17 09:20:04 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | 1.fake //~ ERROR doesn't have fields
|
2016-09-28 04:27:23 -05:00
|
|
|
| ^^^^
|
2016-08-17 09:20:04 -05:00
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _ = fake_field_expr!();
|
2016-08-17 09:20:04 -05:00
|
|
|
| ------------------ in this macro invocation
|
|
|
|
|
2018-04-01 13:48:39 -05:00
|
|
|
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:35:15
|
2016-08-17 09:20:04 -05:00
|
|
|
|
|
2018-04-01 13:48:39 -05:00
|
|
|
LL | (1).0 //~ ERROR doesn't have fields
|
|
|
|
| ^
|
2016-08-17 09:20:04 -05:00
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _ = fake_anon_field_expr!();
|
2016-08-17 09:20:04 -05:00
|
|
|
| ----------------------- in this macro invocation
|
|
|
|
|
2018-05-21 03:45:11 -05:00
|
|
|
error[E0689]: can't call method `neg` on ambiguous numeric type `{float}`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:47:15
|
2018-01-03 21:18:17 -06:00
|
|
|
|
|
2018-05-21 03:45:11 -05:00
|
|
|
LL | 2.0.neg() //~ ERROR can't call method `neg` on ambiguous numeric type `{float}`
|
|
|
|
| ^^^
|
2018-01-03 21:18:17 -06:00
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _ = real_method_expr!();
|
2018-01-03 21:18:17 -06:00
|
|
|
| ------------------- in this macro invocation
|
|
|
|
help: you must specify a concrete type for this numeric value, like `f32`
|
|
|
|
|
|
2018-05-21 03:45:11 -05:00
|
|
|
LL | 2.0_f32.neg() //~ ERROR can't call method `neg` on ambiguous numeric type `{float}`
|
2018-01-04 14:23:14 -06:00
|
|
|
| ^^^^^^^
|
2018-01-03 21:18:17 -06:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
2016-08-17 09:20:04 -05:00
|
|
|
|
2018-04-01 13:48:39 -05:00
|
|
|
Some errors occurred: E0599, E0610, E0689.
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about an error, try `rustc --explain E0599`.
|