blob: 89e3fc9b09edf1e9094b57d7f9d6dc9fcd3e6bb9 [file] [log] [blame]
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -typecheck -verify %s
// REQUIRES: objc_interop
import Foundation
import simd
@objc class Foo: NSObject {
@objc func doStuffWithFloat4(x: float4) -> float4 { return x }
@objc func doStuffWithDouble2(x: double2) -> double2 { return x }
@objc func doStuffWithInt3(x: int3) -> int3 { return x }
@objc func doStuffWithUInt4(x: uint4) -> uint4 { return x }
}