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