Closed
Description
Commit 36c9045 introduced two lines that say unreachable!()
, which breaks this code (playground):
#![no_implicit_prelude]
::std::thread_local! {static Q: () = (); }
I believe they need to say $crate::unreachable!
instead.
Also, if there isn't one already, we should create a regression test for this - #![no_implicit_prelude] seems easy to break by accident.