mirror of
https://github.com/golang/go
synced 2024-11-05 16:56:16 -07:00
77aaa3555d
Fixes #2716. R=ken2 CC=golang-dev https://golang.org/cl/5652065
15 lines
249 B
Go
15 lines
249 B
Go
// Copyright 2012 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 p
|
|
|
|
type A struct {
|
|
s struct{int}
|
|
}
|
|
|
|
func (a *A) f() {
|
|
a.s = struct{int}{0}
|
|
}
|
|
|