mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
16 lines
238 B
Rust
16 lines
238 B
Rust
//@ error-pattern: requires `copy` lang_item
|
|
|
|
#![feature(lang_items, no_core)]
|
|
#![no_core]
|
|
#![no_main]
|
|
|
|
#[lang = "sized"]
|
|
trait Sized { }
|
|
|
|
struct S;
|
|
|
|
#[no_mangle]
|
|
extern "C" fn main(argc: i32, _argv: *const *const u8) -> i32 {
|
|
argc
|
|
}
|