Is there anything wrong with this code? ``` class ...
# announcements
d
Is there anything wrong with this code?
Copy code
class ClassWithInjection {
    lateinit var shouldNeverBeNull: String
    fun prinLength() = shouldNeverBeNull.length

}
IDEA complains Expecting member declaration but it compiles without problems.