mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Also removed the sdk 'feature' in favour of the more specific objc_interop. Swift SVN r24856
12 lines
357 B
Swift
12 lines
357 B
Swift
// RUN: rm -rf %t
|
|
// RUN: mkdir %t
|
|
// RUN: %target-swift-frontend %clang-importer-sdk -emit-module -o %t %S/Inputs/def_objc_xref.swift
|
|
// RUN: %target-swift-frontend %clang-importer-sdk -parse -I %t %s -verify
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import def_objc_xref
|
|
|
|
// Trigger deserialization of the MyObjectFactorySub initializer.
|
|
let sub = MyObjectFactorySub()
|