about summary refs log tree commit diff
path: root/tests/codegen/macos/i686-no-macosx-deployment-target.rs
diff options
context:
space:
mode:
authorBlackHoleFox <blackholefoxdev@gmail.com>2022-11-13 16:58:18 -0600
committerBlackHoleFox <blackholefoxdev@gmail.com>2023-09-23 19:14:25 -0500
commit58bbca958d917a89124da248735926f86c59a149 (patch)
treeefc1dce69321b96c7fd0669ad87babe70a38895f /tests/codegen/macos/i686-no-macosx-deployment-target.rs
parent4e5b31c2b0023dba53a1b2827f4b7ac42aaaa18f (diff)
downloadrust-58bbca958d917a89124da248735926f86c59a149.tar.gz
rust-58bbca958d917a89124da248735926f86c59a149.zip
Raise minimum supported macOS to 10.12
Diffstat (limited to 'tests/codegen/macos/i686-no-macosx-deployment-target.rs')
-rw-r--r--tests/codegen/macos/i686-no-macosx-deployment-target.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codegen/macos/i686-no-macosx-deployment-target.rs b/tests/codegen/macos/i686-no-macosx-deployment-target.rs
index 043040a95e3..479fe7968f7 100644
--- a/tests/codegen/macos/i686-no-macosx-deployment-target.rs
+++ b/tests/codegen/macos/i686-no-macosx-deployment-target.rs
@@ -20,7 +20,7 @@ pub struct Bool {
     b: bool,
 }
 
-// CHECK: target triple = "i686-apple-macosx10.7.0"
+// CHECK: target triple = "i686-apple-macosx10.12.0"
 #[no_mangle]
 pub extern "C" fn structbool() -> Bool {
     Bool { b: true }