testlib 0.1.6

test crate features for myself only, dont download
Documentation
#![no_std]

// use std::vec::Vec;

pub mod abc;

extern crate alloc;

use alloc as std;

use std::vec::Vec;

pub struct Tester {
    size: usize
}

impl Tester {
    pub fn new() -> Tester {
        Self {
            size: 801
        }
    }

    pub fn size(&self) -> usize {
        let mut a: Vec<u32> = Vec::new();
        a.push(3);
        return self.size + a.len() + 1;
        // return self.size;
    }
}