2019-04-25 15:04:37 -05:00
|
|
|
//
|
|
|
|
// Checks that we correctly modify the target when MACOSX_DEPLOYMENT_TARGET is set.
|
|
|
|
// See issue #60235.
|
|
|
|
|
|
|
|
//@ compile-flags: -O --target=i686-apple-darwin --crate-type=rlib
|
2021-06-13 13:19:39 -05:00
|
|
|
//@ needs-llvm-components: x86
|
2022-11-13 16:58:18 -06:00
|
|
|
//@ rustc-env:MACOSX_DEPLOYMENT_TARGET=10.14
|
2019-04-25 15:04:37 -05:00
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
#![no_core]
|
|
|
|
|
2024-05-28 23:11:20 -05:00
|
|
|
#[lang = "sized"]
|
|
|
|
trait Sized {}
|
|
|
|
#[lang = "freeze"]
|
|
|
|
trait Freeze {}
|
|
|
|
#[lang = "copy"]
|
|
|
|
trait Copy {}
|
2019-04-25 15:04:37 -05:00
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
pub struct Bool {
|
|
|
|
b: bool,
|
|
|
|
}
|
|
|
|
|
2022-11-13 16:58:18 -06:00
|
|
|
// CHECK: target triple = "i686-apple-macosx10.14.0"
|
2019-04-25 15:04:37 -05:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn structbool() -> Bool {
|
|
|
|
Bool { b: true }
|
|
|
|
}
|