Home | History | Annotate | Download | only in fixedbugs
      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 
      9 package p
     10 
     11 type S1 struct{}
     12 
     13 func (s *S1) M() {}
     14 
     15 type S2 struct {
     16 	F struct{ *S1 }
     17 }
     18 
     19 func F() {
     20 	_ = struct{ *S1 }{}
     21 }
     22