mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 09:36:40 +00:00
14 lines
254 B
Plaintext
14 lines
254 B
Plaintext
error: missing `fn` or `struct` for function or struct definition
|
|
--> $DIR/missing-fn-issue-65381-2.rs:1:1
|
|
|
|
|
LL | main();
|
|
| ^^^^
|
|
|
|
|
help: if you meant to call a macro, try
|
|
|
|
|
LL | main!();
|
|
| ~~~~~
|
|
|
|
error: aborting due to 1 previous error
|
|
|