ChaiScript/unittests/list_push_front.chai
2011-09-24 12:05:08 -06:00

9 lines
134 B
ChaiScript

load_module("stl_extra")
auto x = List()
x.push_front(3)
x.push_front("A")
assert_equal("A", x.front());
assert_equal(3, x.back());