Reports inline classes that are deprecated and cause compilation warnings in Kotlin 1.5 and later. See What's new in Kotlin 1.5.0

Example:


  inline class Password(val s: String)

After the quick-fix is applied:


  @JvmInline
  value class Password(val s: String)

Inspection is available for Kotlin language level starting from 1.5.