File: mir_fat_ptr.rs

package info (click to toggle)
rustc-web 1.70.0%2Bdfsg1-7~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,517,036 kB
  • sloc: xml: 147,962; javascript: 10,210; sh: 8,590; python: 8,220; ansic: 5,901; cpp: 4,635; makefile: 4,006; asm: 2,856
file content (52 lines) | stat: -rw-r--r-- 994 bytes parent folder | download | duplicates (3)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
// run-pass
// test that ordinary fat pointer operations work.

struct Wrapper<T: ?Sized>(#[allow(unused_tuple_struct_fields)] u32, T);

struct FatPtrContainer<'a> {
    ptr: &'a [u8]
}

fn fat_ptr_project(a: &Wrapper<[u8]>) -> &[u8] {
    &a.1
}

fn fat_ptr_simple(a: &[u8]) -> &[u8] {
    a
}

fn fat_ptr_via_local(a: &[u8]) -> &[u8] {
    let x = a;
    x
}

fn fat_ptr_from_struct(s: FatPtrContainer) -> &[u8] {
    s.ptr
}

fn fat_ptr_to_struct(a: &[u8]) -> FatPtrContainer {
    FatPtrContainer { ptr: a }
}

fn fat_ptr_store_to<'a>(a: &'a [u8], b: &mut &'a [u8]) {
    *b = a;
}

fn fat_ptr_constant() -> &'static str {
    "HELLO"
}

fn main() {
    let a = Wrapper(4, [7,6,5]);

    let p = fat_ptr_project(&a);
    let p = fat_ptr_simple(p);
    let p = fat_ptr_via_local(p);
    let p = fat_ptr_from_struct(fat_ptr_to_struct(p));

    let mut target : &[u8] = &[42];
    fat_ptr_store_to(p, &mut target);
    assert_eq!(target, &a.1);

    assert_eq!(fat_ptr_constant(), "HELLO");
}