blob: 4b852ce141b1225a7de87531090442872bf75498 [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")
}