Files
swift-mirror/test/Parse/ConditionalCompilation/compiler.swift
2018-08-26 15:40:17 +02:00

30 lines
417 B
Swift

// RUN: %target-typecheck-verify-swift
#if !compiler(>=4.1)
// There should be no error here.
foo bar
#else
let _: Int = 1
#endif
#if compiler(<4.1)
// There should be no error here.
foo bar
#else
let _: Int = 1
#endif
#if (compiler(>=4.1))
let _: Int = 1
#else
// There should be no error here.
foo bar
#endif
#if !compiler(<4.1)
let _: Int = 1
#else
// There should be no error here.
foo bar
#endif