Rename: jps-plugin -> jps/jps-plugin
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
interface A {
|
||||
fun f(c: C<Any>)
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
open class B {
|
||||
fun f(c: C<Any>) {}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
open class B {
|
||||
fun f(c: C<Int>) {}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
open class B {
|
||||
fun f(c: C<Any>) {}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
open class BA : B(), A
|
||||
+1
@@ -0,0 +1 @@
|
||||
class C<out T>
|
||||
+36
@@ -0,0 +1,36 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Cleaning output files:
|
||||
out/production/module/B.class
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
End of files
|
||||
Compiling files:
|
||||
src/B.kt
|
||||
End of files
|
||||
Marked as dirty by Kotlin:
|
||||
src/BA.kt
|
||||
Exit code: ADDITIONAL_PASS_REQUIRED
|
||||
------------------------------------------
|
||||
Cleaning output files:
|
||||
out/production/module/BA.class
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
End of files
|
||||
Compiling files:
|
||||
src/BA.kt
|
||||
End of files
|
||||
Exit code: ABORT
|
||||
------------------------------------------
|
||||
COMPILATION FAILED
|
||||
Class 'BA' is not abstract and does not implement abstract member public abstract fun f(c: C<Any>): Unit defined in A
|
||||
|
||||
================ Step #2 =================
|
||||
|
||||
Cleaning output files:
|
||||
out/production/module/B.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/B.kt
|
||||
src/BA.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
Reference in New Issue
Block a user