Small error explanations cleanup
This commit is contained in:
parent
30ddb5a8c1
commit
ec64bbbe07
2 changed files with 6 additions and 4 deletions
|
@ -1,5 +1,4 @@
|
|||
A binary can only have one entry point, and by default that entry point is the
|
||||
function `main()`. If there are multiple such functions, please rename one.
|
||||
More than one `main` function was found.
|
||||
|
||||
Erroneous code example:
|
||||
|
||||
|
@ -14,3 +13,7 @@ fn main() { // error!
|
|||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
A binary can only have one entry point, and by default that entry point is the
|
||||
`main()` function. If there are multiple instances of this function, please
|
||||
rename one of them.
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
A value was moved. However, its size was not known at compile time, and only
|
||||
values of a known size can be moved.
|
||||
A value was moved whose size was not known at compile time.
|
||||
|
||||
Erroneous code example:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue