blob: 32a05228244424722e0ed69925954303756def01 [file] [log] [blame]
#include "swift/Basic/ClusteredBitVector.h"
using namespace swift;
int main() {
ClusteredBitVector cbvs[16];
cbvs[7].appendSetBits(65);
cbvs[3].appendClearBits(118);
cbvs[7] = std::move(cbvs[3]);
assert(cbvs[7][64] == false);
}