aboutsummaryrefslogtreecommitdiff
path: root/test/data
diff options
context:
space:
mode:
Diffstat (limited to 'test/data')
-rw-r--r--test/data/format/annotations.kt2
-rw-r--r--test/data/functions/functionWithAnnotatedParam.kt2
2 files changed, 2 insertions, 2 deletions
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) {
}