10 lines
151 B
Rust
10 lines
151 B
Rust
|
extern crate alloc;
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod tests {
|
||
|
#[test]
|
||
|
fn something_alloc() {
|
||
|
assert_eq!(Vec::<u32>::new(), Vec::<u32>::new());
|
||
|
}
|
||
|
}
|