Files
swift-mirror/test/Parse/ConditionalCompilation/powerpc64LinuxTarget.swift
Saleem Abdulrasool 52952623db test: remove extraneous macro definitions
These tests were defining an unused macro for no clear reason.  Remove
them to simplify the tests.
2019-05-07 08:06:02 -07:00

9 lines
321 B
Swift

// RUN: %swift -typecheck %s -verify -target powerpc64-unknown-linux-gnu -disable-objc-interop -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