mirror of
https://github.com/apple/swift.git
synced 2026-01-07 22:52:31 +01:00
15 lines
494 B
Swift
15 lines
494 B
Swift
// RUN: rm -rf %t
|
|
// RUN: mkdir -p %t
|
|
// RUN: %target-swift-frontend -emit-module-path %t/SerializationHelper.swiftmodule -I %S/Inputs/custom-modules %S/Inputs/SerializationHelper.swift -sdk "" -disable-objc-attr-requires-foundation-module
|
|
// RUN: %target-swift-frontend -parse -sdk "" -I %t -I %S/Inputs/custom-modules %s -verify
|
|
|
|
// XFAIL: linux
|
|
|
|
import SerializationHelper
|
|
|
|
let obj: InitProto = Impl(int: 42)
|
|
|
|
let impl = obj as! Impl
|
|
impl.takeStruct(testStruct(value: 0))
|
|
_ = impl.getEnum()
|