aboutsummaryrefslogtreecommitdiff
path: root/test/data/format/annotations.kt
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/format/annotations.kt')
-rw-r--r--test/data/format/annotations.kt4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/data/format/annotations.kt b/test/data/format/annotations.kt
index 445ec969..9356d4ca 100644
--- a/test/data/format/annotations.kt
+++ b/test/data/format/annotations.kt
@@ -1,4 +1,6 @@
data class Foo {
- inline fun bar() {
+ inline fun bar([noinline] notInlined: () -> Unit) {
}
+
+ inline val x: Int
}