示例#1
0
void test_at_func_const() {
	dynArray<int> const test { 1, 3, 5, 42, 9 };

	ASSERT_EQUAL(42, test.at(3));
}