Add quick fix for adding @JvmDefault annotation

This commit is contained in:
Mikhael Bogdanov
2018-04-06 16:26:48 +02:00
parent 31e459d9c0
commit c5d4f22e4f
12 changed files with 173 additions and 0 deletions
@@ -0,0 +1,8 @@
// "Add '@JvmDefault' annotation" "true"
// COMPILER_ARGUMENTS: -Xenable-jvm-default
// WITH_RUNTIME
interface Bar : Foo {
<caret>override fun foo() {
}
}