1
Fork 0

Change error message in rustbook

This commit is contained in:
Guillaume Gomez 2015-10-16 10:59:04 +02:00
parent 35f8184f7d
commit a3f9fc69d6
4 changed files with 5 additions and 5 deletions

View file

@ -82,7 +82,7 @@ unsafe {
with: with:
```text ```text
error: transmute called on types with different sizes: [u8; 4] (32 bits) to u64 error: transmute called with differently sized types: [u8; 4] (32 bits) to u64
(64 bits) (64 bits)
``` ```

View file

@ -13,7 +13,7 @@
// the error points to the start of the file, not the line with the // the error points to the start of the file, not the line with the
// transmute // transmute
// error-pattern: transmute called on types with different size // error-pattern: transmute called with differently sized types
use std::mem; use std::mem;

View file

@ -13,7 +13,7 @@
// the error points to the start of the file, not the line with the // the error points to the start of the file, not the line with the
// transmute // transmute
// error-pattern: transmute called on types with different size // error-pattern: transmute called with differently sized types
use std::mem; use std::mem;

View file

@ -16,12 +16,12 @@ use std::mem::transmute;
unsafe fn f() { unsafe fn f() {
let _: i8 = transmute(16i16); let _: i8 = transmute(16i16);
//~^ ERROR transmute called on types with different sizes //~^ ERROR transmute called with differently sized types
} }
unsafe fn g<T>(x: &T) { unsafe fn g<T>(x: &T) {
let _: i8 = transmute(x); let _: i8 = transmute(x);
//~^ ERROR transmute called on types with potentially different sizes //~^ ERROR transmute called with differently sized types
} }
fn main() {} fn main() {}