// "Suppress 'REDUNDANT_NULLABLE' for statement " "true" fun foo() { var v = Box() [suppress("REDUNDANT_NULLABLE")] (v: Box?>)++ } class Box { fun inc() = this }