Files
swift-mirror/validation-test/compiler_scale/scale_neighbouring_getset.gyb
2018-03-06 19:42:52 -08:00

12 lines
262 B
Plaintext

// RUN: %scale-test --sum-multi --typecheck --begin 5 --end 16 --step 5 --select NumFunctionsTypechecked %s
// REQUIRES: OS=macosx
// REQUIRES: asserts
struct Struct${N} {
% if int(N) > 1:
var Field : Struct${int(N)-1}?
% else:
var Field : Int?
% end
}