[FIR] Fix reporting EXPOSED_PROPERTY_TYPE_IN_CONSTRUCTOR warning

This commit is contained in:
Dmitriy Novozhilov
2021-03-16 19:12:25 +03:00
parent 21b1d97b30
commit de03124f50
14 changed files with 59 additions and 16 deletions
@@ -1,4 +1,3 @@
// IGNORE_FIR_DIAGNOSTICS
class MyObject private constructor(val delegate: Interface) : Interface by delegate {
constructor() : this(Delegate())
}