Reports local symbols that are not used.
The quick-fix removes the unused symbol.
Example:
def test(): Int = { val unused = 3 3 }
After the quick-fix is applied:
def test(): Int = { 3 }