Create from Usage: Generate secondary constructors by call expressions

This commit is contained in:
Alexey Sedunov
2015-03-25 13:16:56 +03:00
parent 15dddf362e
commit 9c0bcee9a3
20 changed files with 210 additions and 13 deletions
@@ -0,0 +1,12 @@
// "Create secondary constructor" "true"
class A {
constructor(i: Int) {
//To change body of created constructors use File | Settings | File Templates.
}
}
fun test() {
val a = A(1)
}