Unused symbol: secondary constructors are also under analysis #KT-10812 Fixed

This commit is contained in:
Mikhail Glukhikh
2016-05-11 14:46:28 +03:00
parent b7581b35c9
commit 8920e67c5a
7 changed files with 42 additions and 4 deletions
@@ -0,0 +1,4 @@
// "Safe delete constructor" "true"
class Owner(val x: Int) {
<caret>constructor(): this(42)
}
@@ -0,0 +1,3 @@
// "Safe delete constructor" "true"
class Owner(val x: Int) {
}