Files
swift-mirror/test/Sema/implicit_initializer_multi.swift
Doug Gregor 363ef63409 [Code completion] Split out tests that require Objective-C interop.
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.
2018-07-18 21:17:12 -07:00

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()
}