mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +00:00
Loading interface with only one method inherited from Object as not functional.
#KT-1242 fixed
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package test;
|
||||
|
||||
public interface InterfaceWithObjectMethod {
|
||||
String toString();
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package test
|
||||
|
||||
public trait InterfaceWithObjectMethod : java.lang.Object {
|
||||
}
|
||||
Reference in New Issue
Block a user