Default severity: error
Reports invalid constant cutsets and character lists passed to selected
strings functions.
Bad
strings.Trim(value, "\xff") // reportedGood
strings.Trim(value, "é")Detect invalid UTF-8 arguments to strings functions.
Default severity: error
Reports invalid constant cutsets and character lists passed to selected
strings functions.
strings.Trim(value, "\xff") // reportedstrings.Trim(value, "é")