mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
All other scale-tests are in validation-test, so move this one there too to speed up non-validation test runs. Also this fixes the failure on Windows, where we don't run validation tests yet.
10 lines
200 B
Swift
10 lines
200 B
Swift
// RUN: %scale-test --begin 1 --end 20 --step 1 --select NumRedundantRequirementSteps --polynomial-threshold 2 %s
|
|
|
|
protocol P {}
|
|
|
|
func f<T>(_: T) where
|
|
%for i in range(0, N):
|
|
T : P,
|
|
%end
|
|
T : P {}
|