summaryrefslogtreecommitdiffstats
path: root/tests/codegen/default-requires-uwtable.rs
blob: 26424f03568b312ce2afba1b2e11fb4fad006bf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// revisions: WINDOWS ANDROID
// compile-flags: -C panic=abort -Copt-level=0
// [WINDOWS] compile-flags: --target=x86_64-pc-windows-msvc
// [WINDOWS] needs-llvm-components: x86
// [ANDROID] compile-flags: --target=armv7-linux-androideabi
// [ANDROID] needs-llvm-components: arm

#![feature(no_core, lang_items)]
#![crate_type = "lib"]
#![no_core]

#[lang = "sized"]
trait Sized {}

// CHECK: attributes #{{.*}} uwtable
pub fn foo() {}