blob: a95665f126d1eb835817e11c09212378e424ebab [file] [log] [blame]
//@ check-pass
#![feature(pin_ergonomics)]
//~^ WARN the feature `pin_ergonomics` is incomplete
use std::pin::Pin;
fn main() {
let _: Pin<Box<()>> = Box::pin(());
}