mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
e5e0e5fc3e
This results in names to unexported fields like net.(*Dialer)."".deadline instead of net.(*Dialer).deadline. Fixes #18419. Change-Id: I0415c68b77cc16125c2401320f56308060ac3f25 Reviewed-on: https://go-review.googlesource.com/44070 Run-TryBot: Daniel Martí <mvdan@mvdan.cc> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
11 lines
258 B
Go
11 lines
258 B
Go
// Copyright 2017 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 other
|
|
|
|
type Exported struct {
|
|
Member int
|
|
}
|
|
|
|
func (e *Exported) member() int { return 1 }
|