```swift struct Foo { var value: Int { @_lifetime(borrow self) get { return 1 } } } ``` Gets formatted to the following, which drops `@_lifetime` and thus changes semantics ```swift struct Foo { var value: Int { return 1 } } ```