The following code builds on stable without even a warning:
#[cfg(any())]
auto trait Foo {}
That is surprising since there was some effort recently to start ensuring that unstable syntax does not "leak" into stable Rust, so I expected at least a future-compatibility warning. (See e.g. #99935)
Cc @petrochenkov @CAD97
The following code builds on stable without even a warning:
That is surprising since there was some effort recently to start ensuring that unstable syntax does not "leak" into stable Rust, so I expected at least a future-compatibility warning. (See e.g. #99935)
Cc @petrochenkov @CAD97