Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lang-items
/
lang-item-missing.rs
blob: 8762594202a1cde1197911f5dfdde510f04d1181 [
file
] [
log
] [
blame
] [
edit
]
// 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
}