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 c4be805962
commit 2291d91109
7 changed files with 41 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
// C
class C {
fun f(vararg i: Int) {
}
fun p(i: Int, vararg s: String) {
}
}