KT-10770 IDEA cannot keep import if a type is only referenced by kdoc.

#KT-10770 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-04-25 20:40:40 +03:00
parent cd2161b37d
commit e1d8c72aa7
6 changed files with 53 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
// RUNTIME
import kotlin.concurrent.fixedRateTimer
import kotlin.concurrent.read
import java.util.ArrayList
/**
* Reference to [ArrayList]
* Reference to [fixedRateTimer]
* Reference to [kotlin.concurrent.read]
*/
fun foo() {
}
@@ -0,0 +1,11 @@
// RUNTIME
import java.util.ArrayList
import kotlin.concurrent.fixedRateTimer
/**
* Reference to [ArrayList]
* Reference to [fixedRateTimer]
* Reference to [kotlin.concurrent.read]
*/
fun foo() {
}