rust/tests/ui/traits/new-solver/dyn-any-dont-prefer-impl.rs
2023-08-10 14:18:31 +02:00

18 lines
377 B
Rust

// compile-flags: -Ztrait-solver=next
// check-pass
// Test that selection prefers the builtin trait object impl for `Any`
// instead of the user defined impl. Both impls apply to the trait
// object.
use std::any::Any;
fn needs_usize(_: &usize) {}
fn main() {
let x: &dyn Any = &1usize;
if let Some(x) = x.downcast_ref::<usize>() {
needs_usize(x);
}
}