mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
A parse-only option is needed for parse performance tracking and the current option also includes semantic analysis.
78 lines
2.3 KiB
Swift
78 lines
2.3 KiB
Swift
// RUN: %target-typecheck-verify-swift
|
|
|
|
// Test various orderings of constructor calls and assignments to make
|
|
// sure we figure out the constructor kind in various situations.
|
|
|
|
struct Measurement {
|
|
let val: Int
|
|
}
|
|
|
|
class Superclass {
|
|
init() {}
|
|
init(name: String) {}
|
|
}
|
|
|
|
class SomeClass : Superclass {
|
|
let width: Measurement // expected-note *{{change 'let' to 'var' to make it mutable}}
|
|
let height: Measurement // expected-note *{{change 'let' to 'var' to make it mutable}}
|
|
|
|
// super.init() call gives us a chaining initializer, where we can
|
|
// assign let properties
|
|
override init() {
|
|
self.width = Measurement.self.init(val: 10)
|
|
self.height = Measurement.self.init(val: 20)
|
|
super.init(name: "shape")
|
|
}
|
|
|
|
// Another case
|
|
init(width: Int, height: Int) {
|
|
super.init(name: "shape")
|
|
self.width = Measurement.self.init(val: width)
|
|
self.height = Measurement.self.init(val: height)
|
|
}
|
|
|
|
// Delegating initializer -- let properties are immutable
|
|
convenience init(width: Int) {
|
|
self.init(width: width, height: 20)
|
|
self.height = Measurement(val: 20) // expected-error {{cannot assign}}
|
|
}
|
|
|
|
// Another case
|
|
convenience init(height: Int) {
|
|
self.width = Measurement(val: 20) // expected-error {{cannot assign}}
|
|
self.init(width: 10, height: height)
|
|
}
|
|
}
|
|
|
|
struct SomeStruct {
|
|
let width: Measurement // expected-note *{{change 'let' to 'var' to make it mutable}}
|
|
let height: Measurement // expected-note *{{change 'let' to 'var' to make it mutable}}
|
|
|
|
// Delegating initializer
|
|
init() {
|
|
self.init()
|
|
self.width = Measurement.self.init(val: width) // expected-error{{cannot assign}}
|
|
self.height = Measurement.self.init(val: height) // expected-error{{cannot assign}}
|
|
}
|
|
|
|
// Designated initializer
|
|
init(width: Int, height: Int, meta: Measurement.Type) {
|
|
self.width = meta.init(val: width)
|
|
self.height = meta.init(val: height)
|
|
}
|
|
|
|
// Delegating initializer
|
|
init(width: Int) {
|
|
self.init()
|
|
self.width = width // expected-error{{cannot assign}}
|
|
self.height = Measurement(val: 20) // expected-error{{cannot assign}}
|
|
}
|
|
|
|
// Designated initializer
|
|
init(height: Int) {
|
|
self.width = Measurement(val: 10) // expected-error{{cannot assign}}
|
|
self.height = height // expected-error{{cannot assign}}
|
|
self.init()
|
|
}
|
|
}
|