rust/tests/ui/issues/issue-14366.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
104 B
Rust
Raw Normal View History

2014-10-02 19:52:06 +00:00
fn main() {
2019-05-28 18:46:13 +00:00
let _x = "test" as &dyn (::std::any::Any);
2018-07-10 21:10:13 +00:00
//~^ ERROR the size for values of type
2014-10-02 19:52:06 +00:00
}