123456789
#include<iostream> #include<bitset> using namespace std; int main(){ bitset<400> *coord = new bitset<400>; coord[8]=1; }
T *foo = new T;
T=bitset<400>
T=int
12
int *foo = new int; foo[8] = 1;
bitset<400UL>& coord = *(new bitset<400UL>());
bitset<400> coord;