File tree 2 files changed +27
-0
lines changed
2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -275,6 +275,16 @@ impl<T: fmt::Debug + ?Sized> fmt::Debug for Box<T> {
275
275
}
276
276
}
277
277
278
+ // Ensure that the result of e.g. joining a thread can be printed and
279
+ // hence used with `unwrap`. May eventually no longer be needed if
280
+ // dispatch works with upcasting.
281
+ #[ stable( feature = "rust1" , since = "1.0.0" ) ]
282
+ impl fmt:: Debug for Box < Any + Send > {
283
+ fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
284
+ fmt:: Debug :: fmt ( "Box<Any>" , f)
285
+ }
286
+ }
287
+
278
288
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
279
289
impl < T > fmt:: Pointer for Box < T > {
280
290
fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
Original file line number Diff line number Diff line change
1
+ // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2
+ // file at the top-level directory of this distribution and at
3
+ // http://rust-lang.org/COPYRIGHT.
4
+ //
5
+ // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+ // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+ // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+ // option. This file may not be copied, modified, or distributed
9
+ // except according to those terms.
10
+
11
+ // Regression test for unwrapping the result of `join`, issue #21291
12
+
13
+ use std:: thread;
14
+
15
+ fn main ( ) {
16
+ thread:: spawn ( || { } ) . join ( ) . unwrap ( )
17
+ }
You can’t perform that action at this time.
0 commit comments