mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This saves us from having to do overload resolution on the overlay module, which fails if an overlay declaration exactly matches the imported signature of the original ObjC declaration. Fixes rdar://problem/42352695 harder.
11 lines
358 B
Swift
11 lines
358 B
Swift
import Foundation
|
|
@_exported import UIKit
|
|
|
|
public func UIApplicationMain() {}
|
|
public func UIApplicationMain(_ argc: Int32,
|
|
_ argv: UnsafeMutablePointer<UnsafeMutablePointer<Int8>?>!,
|
|
_ principalClassName: String?,
|
|
_ delegateClassName: String?) -> Int32 {
|
|
return 0
|
|
}
|