Add failing range test

Crash occurs if the user attempts to use a range and the source
of the range has gone out of scope. #132
This commit is contained in:
Jason Turner 2014-08-27 12:15:47 -06:00
parent a6e3fd5b42
commit 9c05779fac

View File

@ -2,3 +2,9 @@ auto x = [1, 2, 3, 4]
auto r = range(x)
r.pop_front()
assert_equal(2, r.front());
// test with temporary vector for range
auto q = range([1, 2, 3, 4])
q.pop_front()
assert_equal(2, q.front());