1
0
Fork 0
forked from AbleOS/ableos
ableos_time/ableos/src/utils.rs

27 lines
455 B
Rust
Raw Normal View History

//! Small generic utilities
//!
//!
//!
2022-02-22 18:15:16 -06:00
#[inline]
pub fn type_of<T>(_: &T) -> &str {
core::any::type_name::<T>()
}
#[cfg(test)]
mod tests {
use super::*;
// #[test]
fn test_type_of() {
assert_eq!(type_of(&1), "i32");
}
}
2022-02-01 15:27:40 -06:00
#[no_mangle]
#[allow(unconditional_recursion)]
pub extern "C" fn stack_overflow() -> u8 {
stack_overflow();
// meme number
69 // NOTE: Any specific reason for this number aside from memes?
}