blob: 4c1c80970351c923f14c4348a06d21222e26ebd8 [file] [log] [blame]
// RUN: %swift -typecheck %s -verify -target x86_64-scei-ps4 -disable-objc-interop -parse-stdlib
// RUN: %swift-ide-test -test-input-complete -source-filename %s -target x86_64-scei-ps4
#if os(FreeBSD)
// This block should not parse.
// os(FreeBSD) does not imply os(PS4)
let i: Int = "Hello"
#endif
#if arch(x86_64) && os(PS4) && _runtime(_Native) && _endian(little)
class C {}
var x = C()
#endif
var y = x