let compiler = match rustc_minor_version() {
Some(compiler) => compiler,
None => return,
};
if compiler < 33 {
// Exhaustive integer patterns. On older compilers, a final `_` arm is
// required even if every possible integer value is otherwise covered.
// https://github.com/rust-lang/rust/issues/50907
println!("cargo:rustc-cfg=no_exhaustive_int_match");
}