mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
390 B
Swift
13 lines
390 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-build-swift -emit-module-path %t/main4.swiftmodule -swift-version 4 %s
|
|
// RUN: %target-build-swift -emit-module-path %t/main4_2.swiftmodule -swift-version 4.2 %s
|
|
|
|
// REQUIRES: OS=ios
|
|
|
|
// https://github.com/apple/swift/issues/50414
|
|
|
|
import UIKit
|
|
|
|
public func testInsets(_: UIEdgeInsets = .zero) {}
|
|
public func testOffsets(_: UIOffset = .zero) {}
|