#include #include TEST(ASan_Runtime_Smoke, AllocatesAndReadsArray) { auto values = std::make_unique(64); for (int i = 0; i < 64; ++i) values[i] = i; EXPECT_EQ(values[63], 63); } int main(int argc, char** argv) { testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }