mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 10:19:00 +00:00
11 lines
172 B
Rust
11 lines
172 B
Rust
//@ check-pass
|
|
|
|
#![feature(pin_ergonomics)]
|
|
//~^ WARN the feature `pin_ergonomics` is incomplete
|
|
|
|
use std::pin::Pin;
|
|
|
|
fn main() {
|
|
let _: Pin<Box<()>> = Box::pin(());
|
|
}
|