kevinmost
val DEFAULT: (String) -> Boolean = { true } class Hi(val filter: (String) -> Boolean = DEFAULT) { fun foo() { val isDefaultFilter = filter === DEFAULT } }