xref: /relibc/ralloc/tests/minimal.rs (revision 9cef1dfa322dd22404c3e9ab33874296568bdcc9)
1 extern crate ralloc;
2 
3 #[test]
4 fn minimal() {
5     let mut a = Box::new(1);
6     let mut b = Box::new(2);
7     let mut c = Box::new(3);
8 
9     assert_eq!(*a, 1);
10     assert_eq!(*b, 2);
11     assert_eq!(*c, 3);
12 }
13