import abc.MyClass.MyEnum; /// from Java
/**
* [MyClass.MyEnum]
*/
class efg () : MyClass.MyEnum {
return MyClass.MyEnum.BiGNUMBER;
}
I have something similar to the above in IntelliJ... but it will identify the import as unused - so optimize imports will remove it... however, if I don't insert that import manually then in my docs it will identify [MyClass.MyEnum] as cannot be resolved
What can I do?
This is a known issue in the Kotlin plugin.