1
2
3
4
5
pub mod rtt;

pub fn no_err<T>(value: T) -> Result<T, !> {
    Ok(value)
}