mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 00:29:23 +00:00
13 lines
257 B
Rust
13 lines
257 B
Rust
// Test that a missing lang item (in this case `sized`) does not cause an ICE,
|
|
// see #17392.
|
|
|
|
//@ error-pattern: requires `sized` lang_item
|
|
|
|
#![feature(start, no_core)]
|
|
#![no_core]
|
|
|
|
#[start]
|
|
fn start(argc: isize, argv: *const *const u8) -> isize {
|
|
0
|
|
}
|