mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Most tests were using %swift or similar substitutions, which did not include the target triple and SDK. The driver was defaulting to the host OS. Thus, we could not run the tests when the standard library was not built for OS X. Swift SVN r24504
69 lines
1.8 KiB
Swift
69 lines
1.8 KiB
Swift
// RUN: %target-parse-verify-swift
|
|
|
|
func statement_starts() {
|
|
var f = { (x : Int) -> () in }
|
|
|
|
f(0)
|
|
f (0)
|
|
f // expected-error{{expression resolves to an unused l-value}}
|
|
(0)
|
|
|
|
var a = [1,2,3]
|
|
a[0] = 1
|
|
a [0] = 1
|
|
a // expected-error{{expression resolves to an unused l-value}}
|
|
[0, 1, 2]
|
|
}
|
|
|
|
// Within a function
|
|
func test(inout i: Int, inout j: Int) {
|
|
// Okay
|
|
var x : Int; i = j; j = i
|
|
if i != j { i = j }
|
|
|
|
// Errors
|
|
i = j j = i // expected-error{{consecutive statements}} {{9-9=;}}
|
|
var y : Int i = j // expected-error{{consecutive statements}} {{15-15=;}}
|
|
var z : Int var z2 : Int // expected-error{{consecutive statements}} {{15-15=;}}
|
|
}
|
|
|
|
struct X {
|
|
// In a sequence of declarations.
|
|
var a, b : Int func d() -> Int {} // expected-error{{consecutive declarations}} {{17-17=;}}
|
|
|
|
var prop : Int { return 4
|
|
} var other : Float // expected-error{{consecutive declarations}} {{4-4=;}}
|
|
|
|
// Within property accessors
|
|
subscript(i: Int) -> Float {
|
|
get {
|
|
var x = i x = i + 1 return Float(x) // expected-error{{consecutive statements}} {{16-16=;}} expected-error{{consecutive statements}} {{26-26=;}}
|
|
}
|
|
set {
|
|
var x = i x = i + 1 // expected-error{{consecutive statements}} {{16-16=;}}
|
|
}
|
|
}
|
|
}
|
|
|
|
class C {
|
|
// In a sequence of declarations.
|
|
var a, b : Int func d() -> Int {} // expected-error{{consecutive declarations}} {{17-17=;}}
|
|
init() {
|
|
a = 0
|
|
b = 0
|
|
}
|
|
}
|
|
|
|
protocol P {
|
|
func a() func b() // expected-error{{consecutive declarations}} {{11-11=;}}
|
|
}
|
|
|
|
enum Color {
|
|
case Red case Blue // expected-error{{consecutive declarations}} {{11-11=;}}
|
|
func a() {} func b() {} // expected-error{{consecutive declarations}} {{14-14=;}}
|
|
}
|
|
|
|
// At the top level
|
|
var i, j : Int i = j j = i // expected-error{{consecutive statements}} {{15-15=;}} expected-error{{consecutive statements}} {{21-21=;}}
|
|
|