[lang-ref] ( init_array ) ( cpp )

TEST(ArrayInit, InitArray) {
	// { ... }
	vector<int> items = { 1, 2, 3 };

    EXPECT_EQ(items.size(), 3);
}