mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
226 B
Rust
16 lines
226 B
Rust
// error-pattern: requires `copy` lang_item
|
|
|
|
#![feature(lang_items, start, no_core)]
|
|
#![no_core]
|
|
|
|
#[lang = "sized"]
|
|
trait Sized { }
|
|
|
|
struct S;
|
|
|
|
#[start]
|
|
fn main(_: isize, _: *const *const u8) -> isize {
|
|
let _ = S;
|
|
0
|
|
}
|