mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
53fd522c0d
Follows suit with https://go-review.googlesource.com/#/c/20111. Generated by running $ grep -R 'Go Authors. All' * | cut -d":" -f1 | while read F;do perl -pi -e 's/Go Authors. All/Go Authors. All/g' $F;done The code in cmd/internal/unvendor wasn't changed. Fixes #15213 Change-Id: I4f235cee0a62ec435f9e8540a1ec08ae03b1a75f Reviewed-on: https://go-review.googlesource.com/21819 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
86 lines
1.2 KiB
Go
86 lines
1.2 KiB
Go
// run
|
|
|
|
// Copyright 2011 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 main
|
|
|
|
type T1 struct {
|
|
Next *T2
|
|
}
|
|
|
|
type T2 T1
|
|
|
|
type T3 struct {
|
|
Next *T4
|
|
}
|
|
|
|
type T4 T5
|
|
type T5 T6
|
|
type T6 T7
|
|
type T7 T8
|
|
type T8 T9
|
|
type T9 T3
|
|
|
|
type T10 struct {
|
|
x struct {
|
|
y ***struct {
|
|
z *struct {
|
|
Next *T11
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
type T11 T10
|
|
|
|
type T12 struct {
|
|
F1 *T15
|
|
F2 *T13
|
|
F3 *T16
|
|
}
|
|
|
|
type T13 T14
|
|
type T14 T15
|
|
type T15 T16
|
|
type T16 T17
|
|
type T17 T12
|
|
|
|
// issue 1672
|
|
type T18 *[10]T19
|
|
type T19 T18
|
|
|
|
func main() {
|
|
_ = &T1{&T2{}}
|
|
_ = &T2{&T2{}}
|
|
_ = &T3{&T4{}}
|
|
_ = &T4{&T4{}}
|
|
_ = &T5{&T4{}}
|
|
_ = &T6{&T4{}}
|
|
_ = &T7{&T4{}}
|
|
_ = &T8{&T4{}}
|
|
_ = &T9{&T4{}}
|
|
_ = &T12{&T15{}, &T13{}, &T16{}}
|
|
|
|
var (
|
|
tn struct{ Next *T11 }
|
|
tz struct{ z *struct{ Next *T11 } }
|
|
tpz *struct{ z *struct{ Next *T11 } }
|
|
tppz **struct{ z *struct{ Next *T11 } }
|
|
tpppz ***struct{ z *struct{ Next *T11 } }
|
|
ty struct {
|
|
y ***struct{ z *struct{ Next *T11 } }
|
|
}
|
|
)
|
|
tn.Next = &T11{}
|
|
tz.z = &tn
|
|
tpz = &tz
|
|
tppz = &tpz
|
|
tpppz = &tppz
|
|
ty.y = tpppz
|
|
_ = &T10{ty}
|
|
|
|
t19s := &[10]T19{}
|
|
_ = T18(t19s)
|
|
}
|