// "Replace with 'getX()'" "true" trait X { @deprecated("", ReplaceWith("getX()")) val x: String fun getX(): String } fun foo(x: X): String { return x.x }