KtLightMethod: isVarArgs() does not trigger exact delegate computation

This commit is contained in:
Pavel V. Talanov
2017-03-24 21:35:02 +03:00
parent b10adf2de0
commit 1f62636400
7 changed files with 41 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
public final class C {
public final void f(@org.jetbrains.annotations.NotNull int... i) { /* compiled code */ }
public final void p(int i, @org.jetbrains.annotations.NotNull java.lang.String... s) { /* compiled code */ }
public C() { /* compiled code */ }
}