fix KT-9299 In a project with circular dependencies between modules, IDE reports error on use of internal class from another module, but the corresponding code still compiles and runs.
#KT-9299 Fixed
This commit is contained in:
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
package a
|
||||
|
||||
@Target(AnnotationTarget.FILE)
|
||||
@Retention(AnnotationRetention.SOURCE)
|
||||
annotation class FileAnnotation()
|
||||
|
||||
@Target(AnnotationTarget.CLASS)
|
||||
@Retention(AnnotationRetention.SOURCE)
|
||||
annotation class ClassAnnotation()
|
||||
|
||||
class A
|
||||
|
||||
fun a() {
|
||||
}
|
||||
Reference in New Issue
Block a user