]> git.proxmox.com Git - rustc.git/blob - tests/ui/macros/issue-26094.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / macros / issue-26094.stderr
1 error[E0061]: this function takes 0 arguments but 1 argument was supplied
2 --> $DIR/issue-26094.rs:10:17
3 |
4 LL | $other(None)
5 | ---- unexpected argument of type `Option<_>`
6 ...
7 LL | some_macro!(some_function);
8 | ^^^^^^^^^^^^^
9 |
10 note: function defined here
11 --> $DIR/issue-26094.rs:7:4
12 |
13 LL | fn some_function() {}
14 | ^^^^^^^^^^^^^
15
16 error: aborting due to 1 previous error
17
18 For more information about this error, try `rustc --explain E0061`.