Home | History | Annotate | Download | only in fixedbugs
      1 // compile
      2 
      3 // Copyright 2017 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 package p
      8 
      9 type (
     10 	a = b
     11 	b struct {
     12 		*a
     13 	}
     14 
     15 	c struct {
     16 		*d
     17 	}
     18 	d = c
     19 
     20 	e = f
     21 	f = g
     22 	g = []h
     23 	h i
     24 	i = j
     25 	j = e
     26 )
     27