Create from Usage: Generate secondary constructors by delegation calls

This commit is contained in:
Alexey Sedunov
2015-03-25 15:41:10 +03:00
parent 9c0bcee9a3
commit e8b4c43011
14 changed files with 184 additions and 5 deletions
@@ -0,0 +1,12 @@
// "Create secondary constructor" "false"
// ERROR: Too many arguments for public constructor Any() defined in kotlin.Any
trait T {
}
class A: T {
constructor(): super(<caret>1) {
}
}