Additional Detail from JIRA
|
|
Votes |
0 |
Component/s |
Compiler |
Labels |
Improvement |
Assignee |
None |
Priority |
Medium |
md5: 36faab10dcbb62f023ce9867cbdc0585
Issue Description:
struct S {
static var x: Int = y
static var y: Int = x
}
print(S.x)
With Xcode 13 beta 2, this crashes at runtime without any warnings. IMO it should emit a warning or be an error.