mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Stored `let` properties of a struct, class, or actor permit 'inout' modification within the constructor body after they have been initialized. Tentatively remove this rule, only allowing such `let` properties to be initialized (assigned to) and not treated as `inout`. Fixes rdar://127258363.
63 lines
1.7 KiB
Swift
63 lines
1.7 KiB
Swift
// RUN: %target-swift-frontend -emit-sil -disable-objc-attr-requires-foundation-module -verify %s
|
|
|
|
// High-level tests that DI rejects passing let constants to
|
|
// mutating witness methods
|
|
|
|
|
|
// Mark: General Definitions
|
|
|
|
protocol TestProtocol {
|
|
var foo: Int { get set }
|
|
}
|
|
|
|
struct TestStruct: TestProtocol {
|
|
var foo: Int
|
|
}
|
|
|
|
// Mark: - Case1: Illegally mutating let property of class in initializer
|
|
|
|
class TestClass {
|
|
let testObject: TestProtocol // expected-note {{change 'let' to 'var' to make it mutable}}
|
|
init() {
|
|
testObject = TestStruct(foo: 42)
|
|
testObject.foo = 666 // expected-error {{cannot mutate property 'foo' of immutable value 'self.testObject'}}
|
|
}
|
|
}
|
|
|
|
// Mark: - Case2: Illegally mutating global let constant
|
|
|
|
let testObject: TestProtocol // expected-note {{change 'let' to 'var' to make it mutable}}
|
|
testObject = TestStruct(foo: 42)
|
|
|
|
testObject.foo = 666 // expected-error {{cannot mutate property 'foo' of immutable value 'testObject'}}
|
|
|
|
extension TestProtocol {
|
|
mutating func messThingsUp() {
|
|
foo = 666
|
|
}
|
|
mutating func messThingsUpAndThenThrow() throws {
|
|
foo = 616
|
|
}
|
|
}
|
|
|
|
// Mark: - Case3: Illegally mutating let constant in a function scope
|
|
|
|
let testObject2: TestProtocol
|
|
testObject2 = TestStruct(foo: 42)
|
|
|
|
func testFunc() {
|
|
let testObject: TestProtocol // expected-note {{change 'let' to 'var' to make it mutable}}
|
|
|
|
testObject = TestStruct(foo: 42)
|
|
testObject.foo = 666 // expected-error {{cannot mutate property 'foo' of immutable value 'testObject'}}
|
|
}
|
|
|
|
// Mark: - Case4: Illegally passing a let constants property as an inout parameter
|
|
|
|
let testObject3: TestProtocol
|
|
testObject3 = TestStruct(foo: 42)
|
|
|
|
func mutateThis(mutatee: inout Int) {
|
|
mutatee = 666
|
|
}
|