mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
209 B
Plaintext
11 lines
209 B
Plaintext
// RUN: %scale-test --sum-multi --begin 5 --end 15 --step 5 --select InterfaceTypeRequest %s
|
|
// REQUIRES: asserts
|
|
|
|
indirect enum Enum${N} {
|
|
case OK
|
|
|
|
% if int(N) > 1:
|
|
case next(Enum${int(N)-1})
|
|
% end
|
|
}
|