Test for IllegalArgumentException bug from JVM backend (KT-6149)
JVM backend fails with IllegalArgumentException: Argument for @NotNull parameter 'descriptor' of org/jetbrains/jet/codegen/PropertyCodegen.gen must not be null #KT-6149 Fixed
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// FILE: Bar.java
|
||||
public class Bar implements Foo {
|
||||
public interface I extends Boo {
|
||||
}
|
||||
}
|
||||
|
||||
// FILE: Baz.kt
|
||||
public trait Foo {
|
||||
class object {
|
||||
public val EMPTY: Foo = object : Foo{}
|
||||
}
|
||||
}
|
||||
|
||||
trait Boo
|
||||
|
||||
public class Baz : Bar.I
|
||||
Reference in New Issue
Block a user