rust/tests/ui/dyn-star/unsize-into-ref-dyn-star.rs

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

10 lines
179 B
Rust
Raw Normal View History

#![feature(dyn_star)]
#![allow(incomplete_features)]
use std::fmt::Debug;
fn main() {
let i = 42 as &dyn* Debug;
//~^ ERROR non-primitive cast: `i32` as `&dyn* Debug`
}