File: large-allocator-ice.rs

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (29 lines) | stat: -rw-r--r-- 637 bytes parent folder | download | duplicates (5)
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
//@ build-pass
#![feature(allocator_api)]
#![allow(unused_must_use)]

use std::alloc::Allocator;

struct BigAllocator([usize; 2]);

unsafe impl Allocator for BigAllocator {
    fn allocate(
        &self,
        _: std::alloc::Layout,
    ) -> Result<std::ptr::NonNull<[u8]>, std::alloc::AllocError> {
        todo!()
    }
    unsafe fn deallocate(&self, _: std::ptr::NonNull<u8>, _: std::alloc::Layout) {
        todo!()
    }
}

fn main() {
    Box::new_in((), &std::alloc::Global);
    Box::new_in((), BigAllocator([0; 2]));
    generic_function(0);
}

fn generic_function<T>(val: T) {
    *Box::new_in(val, &std::alloc::Global);
}