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.