1 2 3 4 5 6
#include <vector> int main(int argc, char **argv) { std::vector<bool> a = {0, 1, 0, 1}; return 0; // Set break point at this line. }