From 3921ac60ee89bbd02444f85e8b8b52c7f77c6e27 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Tue, 30 Jun 2015 17:53:02 +0200 Subject: fix tests --- test/data/format/annotations.kt | 2 +- test/data/functions/functionWithAnnotatedParam.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/data/format/annotations.kt b/test/data/format/annotations.kt index 9356d4ca..57f76249 100644 --- a/test/data/format/annotations.kt +++ b/test/data/format/annotations.kt @@ -1,5 +1,5 @@ data class Foo { - inline fun bar([noinline] notInlined: () -> Unit) { + inline fun bar(noinline notInlined: () -> Unit) { } inline val x: Int diff --git a/test/data/functions/functionWithAnnotatedParam.kt b/test/data/functions/functionWithAnnotatedParam.kt index 8922f765..640bec83 100644 --- a/test/data/functions/functionWithAnnotatedParam.kt +++ b/test/data/functions/functionWithAnnotatedParam.kt @@ -1,2 +1,2 @@ -fun function([noinline] notInlined: () -> Unit) { +fun function(noinline notInlined: () -> Unit) { } -- cgit