1#![allow(dead_code)]
2
3mod atomic_waker;
4mod delay;
5mod error;
6mod global;
7mod heap;
8mod timer;
9
10#[macro_use]
11extern crate lazy_static;
12
13pub use crate::global::GLOBAL;
14
15#[cfg(test)]
16mod tests {
17 #[test]
18 fn it_works() {
19 assert_eq!(2 + 2, 4);
20 }
21}