Do not expect that KDoc reference contains importable fqName

#KT-31768 Fixed
This commit is contained in:
Alexander Podkhalyuzin
2019-06-06 16:28:48 +03:00
parent 71604851fe
commit ea86ebf995
6 changed files with 31 additions and 1 deletions
@@ -0,0 +1,8 @@
package goo
import foo.Base
/**
* @property param
*/
class Impl : Base(1)
@@ -0,0 +1 @@
foo.Base
+8
View File
@@ -0,0 +1,8 @@
package foo
abstract class Base(val param: Int)
<selection>/**
* @property param
*/
class Impl : Base(1)</selection>
+3
View File
@@ -0,0 +1,3 @@
package goo
<caret>