We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The following fails to compile in doctests as Rust 2015 on Beta and latest nightly, but passes doctests fine on stable:
//! ``` //! # struct FakeLogger {}; //! # //! # fn main() { //! eprintln!("HI"); //! # } //! ``` fn main() { println!("Hello, world!"); }
Probably related to #91014, #91026, and #91134.