mirror of
https://github.com/golang/go
synced 2024-11-07 10:26:20 -07:00
e43ef8dda2
The gofrontend code doesn't correctly handle inlining a function that refers to a constant with methods. For #35739 Change-Id: I6bd0b5cd4272dbe9969634b4821e668acacfdcf9 Reviewed-on: https://go-review.googlesource.com/c/go/+/261662 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Cherry Zhang <cherryyz@google.com>
16 lines
350 B
Go
16 lines
350 B
Go
// Copyright 2020 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.
|
|
|
|
package a
|
|
|
|
type myError string
|
|
|
|
func (e myError) Error() string { return string(e) }
|
|
|
|
const myErrorVal myError = "error"
|
|
|
|
func IsMyError(err error) bool {
|
|
return err == error(myErrorVal)
|
|
}
|