testing.T.Error
code: testing.go
// Error is equivalent to Log followed by Fail.
func (c *common) Error(args ...any) {
c.checkFuzzFn("Error")
c.log(fmt.Sprintln(args...))
c.Fail()
}
reciverが *commonでもなのに呼び出せちゃうのは T構造体がcommonフィールドをもっていて、embbed fieldという仕組みで勝手に移譲してくれるようだ。