mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
13 lines
413 B
Swift
13 lines
413 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: cp -R %S/Inputs/VerySmallObjCFramework.framework %t
|
|
// RUN: %clang -dynamiclib %S/Inputs/VerySmallObjCFramework.m -fmodules -F %t -o %t/VerySmallObjCFramework.framework/VerySmallObjCFramework
|
|
// RUN: %target-repl-run-simple-swift -F %t | %FileCheck %s
|
|
|
|
// REQUIRES: swift_repl
|
|
// REQUIRES: objc_interop
|
|
|
|
import VerySmallObjCFramework
|
|
|
|
// CHECK: 1171
|
|
print(staticGlobalValue)
|