forEach
Example:
listOf(1, 2, 3).forEach { }
The quick fix introduces anonymous parameter in the forEach section:
listOf(1, 2, 3).forEach { _ -> }