mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Until now, only ">=" was supported in #if swift() expressions, for example: ```#if swift(>=2.1) ```#endif This means that if we want to evaluate code only when the language version is less than a particular version we need to do the following: ```#if !swift(>=2.1) ```#endif An alernative to make this more readable (the "!" can be easily missed in a code review) is to introduce another supported unary operator, "<". The previous example could be rewritten like this: ```#if swift(<2.1) ```#endif This commit adds support for that unary operator, along with some tests.
120 lines
2.4 KiB
Swift
120 lines
2.4 KiB
Swift
// RUN: %target-typecheck-verify-swift
|
|
|
|
#if swift(>=1.0)
|
|
let w = 1
|
|
#else
|
|
// This shouldn't emit any diagnostics.
|
|
asdf asdf asdf asdf
|
|
#endif
|
|
|
|
#if swift(<1.2)
|
|
#endif
|
|
|
|
#if swift(<4.2)
|
|
let a = 1
|
|
#else
|
|
let a = 2
|
|
#endif
|
|
|
|
#if swift(<1.0)
|
|
// This shouldn't emit any diagnostics.
|
|
asdf asdf asdf asdf
|
|
#endif
|
|
|
|
#if swift(>=1.2)
|
|
|
|
#if os(iOS)
|
|
let z = 1
|
|
#else
|
|
let z = 1
|
|
#endif
|
|
|
|
#else
|
|
// This shouldn't emit any diagnostics.
|
|
asdf asdf asdf asdf
|
|
#if os(iOS)
|
|
// This shouldn't emit any diagnostics.
|
|
asdf asdf asdf asdf
|
|
#else
|
|
// This shouldn't emit any diagnostics.
|
|
asdf asdf asdf asdf
|
|
#endif
|
|
// This shouldn't emit any diagnostics.
|
|
asdf asdf asdf asdf
|
|
#endif
|
|
|
|
#if !swift(>=1.0)
|
|
// This shouldn't emit any diagnostics.
|
|
%#^*&
|
|
#endif
|
|
|
|
#if !swift(<1000.0)
|
|
// This shouldn't emit any diagnostics.
|
|
%#^*&
|
|
#endif
|
|
|
|
#if swift(">=7.1") // expected-error {{unexpected platform condition argument: expected a unary comparison '>=' or '<'; for example, '>=2.2' or '<2.2'}}
|
|
#endif
|
|
|
|
#if swift("<7.1") // expected-error {{unexpected platform condition argument: expected a unary comparison '>=' or '<'; for example, '>=2.2' or '<2.2'}}
|
|
#endif
|
|
|
|
#if swift(">=2n.2") // expected-error {{unexpected platform condition argument: expected a unary comparison '>=' or '<'; for example, '>=2.2' or '<2.2'}}
|
|
#endif
|
|
|
|
#if swift("") // expected-error {{unexpected platform condition argument: expected a unary comparison '>=' or '<'; for example, '>=2.2' or '<2.2'}}
|
|
#endif
|
|
|
|
#if swift(>=2.2.1)
|
|
_ = 2.2.1 // expected-error {{expected named member of numeric literal}}
|
|
#endif
|
|
|
|
class C {
|
|
#if swift(>=2.2.1)
|
|
let val = 2.2.1 // expected-error {{expected named member of numeric literal}}
|
|
#endif
|
|
}
|
|
|
|
#if swift(>=2.0, *) // expected-error {{expected only one argument to platform condition}}
|
|
#endif
|
|
|
|
#if swift(>=, 2.0) // expected-error {{expected only one argument to platform condition}}
|
|
#endif
|
|
|
|
protocol P {
|
|
#if swift(>=2.2)
|
|
associatedtype Index
|
|
#else
|
|
// There should be no warning here.
|
|
typealias Index
|
|
|
|
// There should be no error here.
|
|
adsf asdf asdf
|
|
%#^*&
|
|
func foo(sdfsdfdsf adsf adsf asdf adsf adsf)
|
|
#endif
|
|
}
|
|
|
|
#if swift(>=2.2)
|
|
func foo() {}
|
|
#else
|
|
// There should be no error here.
|
|
func foo(sdfsdfdsf adsf adsf asdf adsf adsf)
|
|
#endif
|
|
|
|
struct S {
|
|
#if swift(>=2.2)
|
|
let x: Int
|
|
#else
|
|
// There should be no error here.
|
|
let x: @#$()%&*)@#$(%&*
|
|
#endif
|
|
}
|
|
|
|
#if swift(>=2.2)
|
|
var zzz = "zzz"
|
|
#else
|
|
// There should be no error here.
|
|
var zzz = zzz
|
|
#endif
|