This inspection reports guard clause that can be replaced with kotlin's function call. For example:

fun test(foo: Int?) {
    if (foo == null) throw IllegalArgumentException("foo") // Replace guard clause with kotlin's function call
}