mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
A bunch of tests that technically require Objective-C interop were not labeled as such, and worked in the absence of Objective-C interop due to bugs in the type checker.
8 lines
224 B
Swift
8 lines
224 B
Swift
// RUN: %target-swift-frontend -emit-silgen -primary-file %s %S/Inputs/implicit_initializer_multi_other.swift -verify
|
|
// REQUIRES: objc_interop
|
|
|
|
func test() {
|
|
_ = DefaultInitializable()
|
|
_ = DefaultInitializableClass()
|
|
}
|