mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 08:15:58 +00:00
16 lines
227 B
Rust
16 lines
227 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
|
|
}
|