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:
parent
a6e3fd5b42
commit
9c05779fac
@ -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());
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user