flint
flint copied to clipboard
Detect use of unused state property
contract X {
let name: String = "Contract X" // warn: name was never used
}
I'm not quite sure what this issue actually means - is this supposed to be detecting unused state properties so as to give a warning?
Yup