Rust 1.66 comes with std::hint::black_box(), a function that does nothing. However, the compiler tries its very best to pretend it doesn't know what that function does.
It is useful in benchmarks, to prevent the compiler from optimizing your entire benchmark away.
2/12