mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
10 lines
230 B
C++
10 lines
230 B
C++
#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]);
|
|
}
|