mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 04:52:40 +00:00
11 lines
204 B
Rust
11 lines
204 B
Rust
//@ edition: 2018
|
|
|
|
#![feature(lang_items, no_core)]
|
|
#![no_core]
|
|
#![no_main]
|
|
|
|
#[lang="copy"] pub trait Copy { }
|
|
#[lang="sized"] pub trait Sized { }
|
|
|
|
async fn x() {} //~ ERROR requires `ResumeTy` lang_item
|