Introduce "Add missing 'class' keyword" intention

#KT-14884 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-11-01 02:54:29 +01:00
committed by Vladimir Dolzhenko
parent 9634e6fba3
commit b4c62cdb52
21 changed files with 164 additions and 1 deletions
@@ -0,0 +1,7 @@
// DISABLE-ERRORS
annotation class Ann
@Ann
private data <caret>Foo(val s: String) {
fun foo() {}
}