]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-26237.stderr
Auto merge of #81458 - estebank:match-stmt-remove-semi, r=oli-obk
[rust.git] / src / test / ui / issues / issue-26237.stderr
1 error[E0618]: expected function, found `{integer}`
2   --> $DIR/issue-26237.rs:10:18
3    |
4 LL |         $not_a_function($some_argument)
5    |         ------------------------------- call expression requires function
6 ...
7 LL |     let mut value_a = 0;
8    |         ----------- `value_a` has type `{integer}`
9 LL |     let mut value_b = 0;
10 LL |     macro_panic!(value_a, value_b);
11    |                  ^^^^^^^
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0618`.