Jinseong Jeon | ea1e536 | 2019-02-03 02:56:42 -0800 | [diff] [blame] | 1 | // Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file |
| 2 | // for details. All rights reserved. Use of this source code is governed by a |
| 3 | // BSD-style license that can be found in the LICENSE file. |
| 4 | package reprocess_merged_lambdas_kstyle |
| 5 | |
| 6 | private var COUNT = 11 |
| 7 | |
| 8 | private fun next() = "${COUNT++}" |
| 9 | |
| 10 | fun consumeOne(l: (x: String) -> String): String = l(next()) |
| 11 | |
| 12 | fun main(args: Array<String>) { |
| 13 | println(consumeOne { consumeOne { consumeOne { _ -> "A" } } }) |
| 14 | println(consumeOne { consumeOne { consumeOne { _ -> "B" } } }) |
Søren Gjesse | b5ae53d | 2025-02-19 09:31:52 +0100 | [diff] [blame] | 15 | } |