FIC: support fun interfaces in stub builder

This commit is contained in:
Mikhail Zarechenskiy
2019-12-19 13:41:48 +03:00
parent 70094884ca
commit 8206cadce2
13 changed files with 143 additions and 15 deletions
@@ -0,0 +1,14 @@
// IntelliJ API Decompiler stub source generated from a class file
// Implementation of methods is not available
package test
public final class FunInterfaceDeclaration public constructor() {
public fun interface GenericKRunnable<T, R> {
public abstract fun invoke(t: T): R
}
public fun interface KRunnable {
public abstract fun invoke(): kotlin.Unit
}
}