Fix invalid signature for generic UL method

Fixed #KT-38348
This commit is contained in:
Igor Yakovlev
2020-04-17 15:48:46 +03:00
parent 6f40ad7de2
commit ed3ae785fb
13 changed files with 85 additions and 58 deletions
@@ -4,21 +4,21 @@ public final class UInt /* UInt*/ {
public enum Foo /* Foo*/ {
;
public final int getX();
public final int getX();// getX()
}
public final class InlinedDelegate /* InlinedDelegate*/<T> {
@null()
public final T getNode();
public final T getNode();// getNode()
}
public final class InlineInheritance /* InlineInheritance*/ {
public final int getV();
public final int getV();// getV()
public int getX();
public int getX();// getX()
public int y();
public int y();// y()
}