I have a question regarding lazy usage. Does doing...
# announcements
b
I have a question regarding lazy usage. Does doing something like this:
Copy code
class TestClass {
    private val testLazy by lazy { "Hello world" }
    fun testLazy() = testLazy
}
completely negate the lazy?