Files
swift-mirror/test/Parse/ConditionalCompilation/powerpc64LinuxTarget.swift
David Farler b7d17b25ba Rename -parse flag to -typecheck
A parse-only option is needed for parse performance tracking and the
current option also includes semantic analysis.
2016-11-28 10:50:55 -08:00

9 lines
342 B
Swift

// RUN: %swift -typecheck %s -verify -D FOO -D BAR -target powerpc64-unknown-linux-gnu -disable-objc-interop -D FOO -parse-stdlib
// RUN: %swift-ide-test -test-input-complete -source-filename=%s -target powerpc64-unknown-linux-gnu
#if arch(powerpc64) && os(Linux) && _runtime(_Native) && _endian(big)
class C {}
var x = C()
#endif
var y = x