mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
14 lines
384 B
Rust
14 lines
384 B
Rust
// check-pass
|
|
// compile-flags: -Ztrait-solver=next
|
|
|
|
use std::fmt::Display;
|
|
|
|
fn box_dyn_display(_: Box<dyn Display>) {}
|
|
|
|
fn main() {
|
|
// During coercion, we don't necessarily know whether `{integer}` implements
|
|
// `Display`. Before, that would cause us to bail out in the coercion loop when
|
|
// checking `{integer}: Unsize<dyn Display>`.
|
|
box_dyn_display(Box::new(1));
|
|
}
|