Do not show doc-comment references in data flow

This commit is contained in:
Valentin Kipyatkov
2020-04-13 12:42:16 +03:00
parent 84a786dde3
commit 06de3de1a6
8 changed files with 53 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
// FLOW: OUT
class KotlinClass {
fun <caret>foo(): Int = 10
/**
* Uses [foo]
*/
fun bar() {
val v = foo()
}
}