blob: c8375daf82bf38463323d8470da47f11a9ac2259 [file] [log] [blame]
Jinseong Jeonea1e5362019-02-03 02:56:42 -08001// 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.
4package reprocess_merged_lambdas_kstyle
5
6private var COUNT = 11
7
8private fun next() = "${COUNT++}"
9
10fun consumeOne(l: (x: String) -> String): String = l(next())
11
12fun main(args: Array<String>) {
13 println(consumeOne { consumeOne { consumeOne { _ -> "A" } } })
14 println(consumeOne { consumeOne { consumeOne { _ -> "B" } } })
Søren Gjesseb5ae53d2025-02-19 09:31:52 +010015}