the swift-bson library is currently unbuildable on nightly development snapshots due to a Swift compiler crash.
i want to #if
out the code that crashes the compiler on nightly snapshots only, so that i can use the library with Swift WebAssembly.
if i write #if compiler(>=6.1)
and tag this as a release, this will change the library in source-breaking ways when the actual Swift 6.1 toolchain is released. (the “midnight” update problem.)
how do i write a compiler conditional that only applies to nightly snapshots?