From b38d9929f7a015b56b847fde7e83f814f354497e Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Mon, 11 Nov 2019 17:55:52 +0700 Subject: One does not simply do CP well in NNN --- cpptour/Vector-test.cc | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'cpptour/Vector-test.cc') diff --git a/cpptour/Vector-test.cc b/cpptour/Vector-test.cc index b49ff85..fbdf129 100644 --- a/cpptour/Vector-test.cc +++ b/cpptour/Vector-test.cc @@ -1,3 +1,4 @@ +#include #include #include @@ -13,8 +14,16 @@ neg_length () catch (bad_alloc) { cout << "BIG OOF!" << endl; } } +void +init () +{ + Vector v {7.4, 3.2, 5.2, 6.9, 9.5, 4.2, 21.7}; + assert(v[5] == 4.2); +} + int main () { neg_length (); + init (); } -- cgit 1.4.1