FIC: Parse fun keyword in front of interface as a modifier

This commit is contained in:
Mikhail Zarechenskiy
2019-11-12 01:07:59 +03:00
parent 174b3db723
commit 4aa195e912
7 changed files with 218 additions and 4 deletions
+17
View File
@@ -0,0 +1,17 @@
fun interface Foo
fun interface Foo {
fun invoke()
}
private fun interface Foo
@Bar
fun interface Foo
class TopLevel {
fun interface Foo
}
fun
interface Foo