mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
11 lines
195 B
Rust
11 lines
195 B
Rust
// check-pass
|
|
|
|
#![feature(dyn_star)]
|
|
//~^ WARN the feature `dyn_star` is incomplete and may not be safe to use and/or cause compiler crashes
|
|
|
|
fn _foo() -> dyn* Unpin {
|
|
4usize
|
|
}
|
|
|
|
fn main() {}
|