Что выведет следующий код?
package main import "fmt" type MyError struct { data string } func (e *MyError) Error() string { return```