With the following in an iOS and watch app
import Observation
@Observable final class DataModel {
var common = 0
#if os(iOS)
var iProp = 0
#endif
}
Xcode 15 beta 5 reports error: Cannot find type '_iProp' in scope
Is platform specific property forbidden in Observable
objects?