Skip to content

Commit 7ce9914

Browse files
committed
updates to integration test
1 parent e3b2c8a commit 7ce9914

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pkgs/swift2objc/test/integration/structs_and_properties_output.swift

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ import Foundation
1414
@objc public class MyStructWrapper: NSObject {
1515
var wrappedInstance: MyStruct
1616

17+
@objc public var mutatingProperty: Int {
18+
get {
19+
wrappedInstance.mutatingProperty
20+
}
21+
}
22+
1723
@objc public var customGetterProperty: MyOtherStructWrapper {
1824
get {
1925
MyOtherStructWrapper(wrappedInstance.customGetterProperty)
@@ -80,12 +86,6 @@ import Foundation
8086
}
8187
}
8288

83-
@objc public var mutatingProperty: Int {
84-
get {
85-
wrappedInstance.mutatingProperty
86-
}
87-
}
88-
8989
init(_ wrappedInstance: MyStruct) {
9090
self.wrappedInstance = wrappedInstance
9191
}

0 commit comments

Comments
 (0)