blob: 4e26343242e0105d46a5b5c4e2304b8699efeb4d [file] [log] [blame]
// 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
}