summaryrefslogtreecommitdiffstats
path: root/src/test/ui/transmute/transmute-fat-pointers.stderr
blob: e8335fcbed9d0a4bf9df7a13454cdd6b93f9e0f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
  --> $DIR/transmute-fat-pointers.rs:10:14
   |
LL |     unsafe { transmute(x) }
   |              ^^^^^^^^^
   |
   = note: source type: `&[T]` (N bits)
   = note: target type: `&U` (pointer to `U`)

error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
  --> $DIR/transmute-fat-pointers.rs:14:14
   |
LL |     unsafe { transmute(x) }
   |              ^^^^^^^^^
   |
   = note: source type: `&T` (pointer to `T`)
   = note: target type: `&U` (pointer to `U`)

error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
  --> $DIR/transmute-fat-pointers.rs:26:14
   |
LL |     unsafe { transmute(x) }
   |              ^^^^^^^^^
   |
   = note: source type: `&T` (pointer to `T`)
   = note: target type: `&U` (N bits)

error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
  --> $DIR/transmute-fat-pointers.rs:30:14
   |
LL |     unsafe { transmute(x) }
   |              ^^^^^^^^^
   |
   = note: source type: `&T` (N bits)
   = note: target type: `&U` (pointer to `U`)

error: aborting due to 4 previous errors

For more information about this error, try `rustc --explain E0512`.