Files
rust/tests/ui/cast/trait-object-size-error-14366.rs
2025-08-05 19:34:46 +05:00

7 lines
176 B
Rust

//! Regression test for https://github.com/rust-lang/rust/issues/14366
fn main() {
let _x = "test" as &dyn (::std::any::Any);
//~^ ERROR the size for values of type
}