1error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
2  --> $DIR/transmute-impl.rs:21:18
3   |
4LL |         unsafe { transmute(x) }
5   |                  ^^^^^^^^^
6   |
7   = note: source type: `&T` (pointer to `T`)
8   = note: target type: `&isize` (N bits)
9
10error: aborting due to previous error
11
12For more information about this error, try `rustc --explain E0512`.
13