blob: 493da6e8e4f9eccd0f1b3a45dc24c498fe5c03b1 [file] [log] [blame]
// RUN: %target-typecheck-verify-swift -solver-expression-time-threshold=1
// REQUIRES: tools-release,no_asan
_ = (2...100).reversed().filter({ $0 % 11 == 0 }).map {
"\($0) bottles of beer on the wall, \($0) bottles of beer;\n"
+ " take eleven down, pass 'em around, \($0-11) bottles of beer on the wall!"
}