rust/tests/ui/dyn-star/const.rs

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

15 lines
207 B
Rust
Raw Normal View History

2022-06-28 21:02:30 +00:00
// run-pass
2022-08-29 19:02:03 +00:00
#![feature(dyn_star)]
2022-08-30 19:44:00 +00:00
#![allow(unused, incomplete_features)]
2022-06-28 21:02:30 +00:00
use std::fmt::Debug;
fn make_dyn_star() {
let i = 42usize;
2022-09-14 23:20:03 +00:00
let dyn_i: dyn* Debug = i;
2022-06-28 21:02:30 +00:00
}
fn main() {
make_dyn_star();
}