mirror of
https://github.com/golang/go
synced 2024-11-07 03:46:17 -07:00
80098ef00c
The invalid interface type will be reported already, so don't expand that invalid one, which causes the compiler crashes. Updates #43311 Change-Id: Ic335cfa74f0b9fcfd0929dc5fd31d9156a8f5f5c Reviewed-on: https://go-review.googlesource.com/c/go/+/298710 Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com> Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
24 lines
612 B
Go
24 lines
612 B
Go
// errorcheck -d=panic
|
|
|
|
// 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 we get a single non-confusing error
|
|
// message for embedded fields/interfaces that use
|
|
// a qualified identifier with non-existing package.
|
|
|
|
package p
|
|
|
|
type _ struct {
|
|
F sync.Mutex // ERROR "undefined: sync|expected package"
|
|
}
|
|
|
|
type _ struct {
|
|
sync.Mutex // ERROR "undefined: sync|expected package"
|
|
}
|
|
|
|
type _ interface {
|
|
sync.Mutex // ERROR "undefined: sync|expected package|expected signature or type name"
|
|
}
|