Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: %target-typecheck-verify-swift -solver-scope-threshold=10000
// RUN: %target-typecheck-verify-swift -solver-scope-threshold=10000 -target %target-cpu-apple-macosx10.15
// Succeeds in 60ms with 5572 scopes

// REQUIRES: objc_interop
Expand All @@ -23,6 +23,6 @@ struct Breathe: View {
.rotationEffect(.degrees(Double(index * 360 / Self.colors.count)))
}
}
.frame(width: self.leafSize, height: self.leafSize) // <== The compiler is unable to type-check this expression in reasonable time
.frame(width: self.leafSize, height: self.leafSize)
}
}