diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2015-08-26 14:21:46 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2015-08-26 14:21:46 +0200 |
| commit | 9f15b281195b413791bbfd8a60a7448bb156e102 (patch) | |
| tree | 0e1b57366ea3e01a2e9bae4d9c574ba169f11c48 | |
| parent | 0c4faf2a0785ea00f8498289dd2a558627b5bc66 (diff) | |
| download | rust-9f15b281195b413791bbfd8a60a7448bb156e102.tar.gz rust-9f15b281195b413791bbfd8a60a7448bb156e102.zip | |
Add missing ';' in E0132
| -rw-r--r-- | src/librustc_typeck/diagnostics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_typeck/diagnostics.rs b/src/librustc_typeck/diagnostics.rs index 526a895592b..3c7f754aabc 100644 --- a/src/librustc_typeck/diagnostics.rs +++ b/src/librustc_typeck/diagnostics.rs @@ -1734,7 +1734,7 @@ It is not possible to declare type parameters on a function that has the `start` attribute. Such a function must have the following type signature: ``` -fn(isize, *const *const u8) -> isize +fn(isize, *const *const u8) -> isize; ``` "##, |
