diff options
Diffstat (limited to 'test/data/format/annotations.kt')
-rw-r--r-- | test/data/format/annotations.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/data/format/annotations.kt b/test/data/format/annotations.kt new file mode 100644 index 00000000..9356d4ca --- /dev/null +++ b/test/data/format/annotations.kt @@ -0,0 +1,6 @@ +data class Foo { + inline fun bar([noinline] notInlined: () -> Unit) { + } + + inline val x: Int +} |