We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c6521 commit 51db51eCopy full SHA for 51db51e
validation-test/Sema/type_checker_perf/slow/rdar54926602.swift
@@ -0,0 +1,15 @@
1
+// FIXME: We shouldn't be consuming a lot of memory here but we do.
2
+// RUN: %scale-test --begin 1 --end 4 --step 1 --select NumLeafScopes %s --expected-exit-code 1 --invert-result
3
+// REQUIRES: OS=macosx
4
+// REQUIRES: asserts
5
+
6
+class God {
7
+ public func isEqual(_ other: God) -> Bool {
8
+ return (
9
+ (self.form == other.form)
10
+%for i in range(1, N):
11
+ && (self.form == other.form)
12
+%end
13
+ )
14
+ }
15
+}
0 commit comments