From ad71934c550a10d37b16faef1f8066dad862894c Mon Sep 17 00:00:00 2001 From: Denis Zharkov Date: Mon, 20 Jun 2016 14:34:13 +0300 Subject: [PATCH] Minor. Add 'operator' modifier in test for handleResult --- compiler/testData/codegen/box/coroutines/generate.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/testData/codegen/box/coroutines/generate.kt b/compiler/testData/codegen/box/coroutines/generate.kt index 772d114b80f..51158972a04 100644 --- a/compiler/testData/codegen/box/coroutines/generate.kt +++ b/compiler/testData/codegen/box/coroutines/generate.kt @@ -48,7 +48,7 @@ class GeneratorController() : AbstractIterator() { setNextStep(c) } - fun handleResult(result: Unit, c: Continuation) { + operator fun handleResult(result: Unit, c: Continuation) { done() } }