1// compile 2 3// Copyright 2013 The Go Authors. All rights reserved. 4// Use of this source code is governed by a BSD-style 5// license that can be found in the LICENSE file. 6 7// Caused gccgo to emit multiple definitions of the same symbol. 8 9package p 10 11type S1 struct{} 12 13func (s *S1) M() {} 14 15type S2 struct { 16 F struct{ *S1 } 17} 18 19func F() { 20 _ = struct{ *S1 }{} 21} 22