blob: 14a766496fb8cd2b67ff7a5ee64f83c836f3fc6a [file] [log] [blame]
-- suggestedfix_consecutive_params_5_2 --
package missingfunction
func consecutiveParams() {
var s string
undefinedConsecutiveParams(s, s) //@suggestedfix("undefinedConsecutiveParams", "quickfix")
}
func undefinedConsecutiveParams(s1, s2 string) {
panic("unimplemented")
}