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
|
|
}
|