[Runtime] Add missing FakeUnavailableSwiftDylib.swift file.

This commit is contained in:
Mike Ash
2019-08-14 15:00:53 -04:00
parent ce26e7f3fd
commit 93128d8fea

View File

@@ -0,0 +1,9 @@
@available(OSX 1066.0, iOS 1066.0, watchOS 1066.0, tvOS 1066.0, *)
public protocol UnavailableSwiftProtocol {
func someMethod()
}
@available(OSX 1066.0, iOS 1066.0, watchOS 1066.0, tvOS 1066.0, *)
public class UnavailableSwiftClass {
func someMethod() {}
}