```class KotlinStrangeness { @Test fun `wtf`()...
# announcements
b
Copy code
class KotlinStrangeness {
    @Test fun `wtf`() {
        assertNull(notNull({ null; }))
    }

    fun <T> notNull(block:() -> T) : T {
        return block()
    }
}