mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
345 B
Swift
11 lines
345 B
Swift
// RUN: %target-typecheck-verify-swift -Xcc -fmodule-map-file=%S/Inputs/objc_implementation_private.modulemap -target %target-stable-abi-triple
|
|
// REQUIRES: objc_interop
|
|
|
|
@_implementationOnly import objc_implementation_internal
|
|
|
|
@objc @implementation extension InternalObjCClass {
|
|
@objc public func method(fromHeader1: CInt) {
|
|
// OK
|
|
}
|
|
}
|