mirror of
https://github.com/golang/go
synced 2024-11-05 11:46:12 -07:00
a1aafd8b28
A prior optimization (https://golang.org/cl/106175) removed the generation of unnecessary method expression wrappers, but also eliminated the generation of the wrapper for error.Error which was still required. Special-case error type in the optimization. Fixes #29304. Change-Id: I54c8afc88a2c6d1906afa2d09c68a0a3f3e2f1e3 Reviewed-on: https://go-review.googlesource.com/c/154578 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
20 lines
404 B
Go
20 lines
404 B
Go
// run
|
|
|
|
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Verify that relocation target go.builtin.error.Error
|
|
// is defined and the code links and runs correctly.
|
|
|
|
package main
|
|
|
|
import "errors"
|
|
|
|
func main() {
|
|
err := errors.New("foo")
|
|
if error.Error(err) != "foo" {
|
|
panic("FAILED")
|
|
}
|
|
}
|