bitkid
class KotlinStrangeness { @Test fun `wtf`() { assertNull(notNull({ null; })) } fun <T> notNull(block:() -> T) : T { return block() } }