Closed RalfJung closed 3 days ago
This:
panic!( "use of std::thread::current() is not possible after the thread's local data has been destroyed" )
will print a newline followed by a bunch of spaces, since the entire string literal is interpreted literally.
I think the intention was to print the message without the newline and the spaces, so let's add some \ to make that happen.
\
r? @joboet
Yeah, that wasn't on purpose... 😄 thank you! @bors r+ rollup
:pushpin: Commit 8bc8adb8dcaa268e2b2bd9093f8f4f4bcb0b1a45 has been approved by joboet
joboet
It is now in the queue for this repository.
This:
will print a newline followed by a bunch of spaces, since the entire string literal is interpreted literally.
I think the intention was to print the message without the newline and the spaces, so let's add some
\
to make that happen.r? @joboet