I’m updating my project from 1.3.61 to 1.4.10 and ...
# kotlin-native
r
I’m updating my project from 1.3.61 to 1.4.10 and something that worked no longer compiles:
Copy code
@ExportObjCClass
class CandidateInfoUITableViewCell @OverrideInit constructor(
    style: UITableViewCellStyle = UITableViewCellStyle.UITableViewCellStyleDefault,
    reuseIdentifier: String? = null
) : UITableViewCell(style = style, reuseIdentifier = reuseIdentifier) {
    ...
Error:
Copy code
...CandidateInfoUITableViewCell.kt: (24, 5): constructor with @OverrideInit doesn't override any super class constructor.
It must completely match by parameter names and types.
I don’t understand. This compiled in 1.3.61 and the parameter names are the right type and names. IDEA doesn’t even show any error.