Skip to content

Commit 9f15b28

Browse files
Add missing ';' in E0132
1 parent 0c4faf2 commit 9f15b28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_typeck/diagnostics.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1734,7 +1734,7 @@ It is not possible to declare type parameters on a function that has the `start`
17341734
attribute. Such a function must have the following type signature:
17351735
17361736
```
1737-
fn(isize, *const *const u8) -> isize
1737+
fn(isize, *const *const u8) -> isize;
17381738
```
17391739
"##,
17401740

0 commit comments

Comments
 (0)