rust/src/test/ui/issues/issue-26237.stderr

16 lines
505 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0618]: expected function, found `{integer}`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-26237.rs:10:18
2018-07-15 16:11:54 -05:00
|
LL | $not_a_function($some_argument)
| ------------------------------- call expression requires function
2018-07-15 16:11:54 -05:00
...
LL | let mut value_a = 0;
| ----------- `{integer}` defined here
LL | let mut value_b = 0;
LL | macro_panic!(value_a, value_b);
| ^^^^^^^
2018-07-15 16:11:54 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0618`.