summaryrefslogtreecommitdiffstats
path: root/tests/ui/lang-items/lang-item-missing.rs
blob: 4e26343242e0105d46a5b5c4e2304b8699efeb4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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
}