mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Within invalid code, we might encounter expressions without type information yet. Check for NULL here. Fixes crash from rdar://problem/53120878.
5 lines
178 B
Swift
5 lines
178 B
Swift
// RUN: not %target-swift-frontend -typecheck %s
|
|
public struct Use { @Wrap var value: some Doubl = 1.0 }
|
|
@propertyWrapper public struct Wrap { public var wrappedValue: Double }
|
|
|