libgo: update to Go 1.11
[official-gcc.git] / libgo / go / go / doc / testdata / issue22856.1.golden
bloba88f43f4bd7e219bdaf3b6ca670ac57d0b351324
1 // 
2 PACKAGE issue22856
4 IMPORTPATH
5         testdata/issue22856
7 FILENAMES
8         testdata/issue22856.go
10 FUNCTIONS
11         // NewPointerSliceOfSlice is not a factory function because slices ...
12         func NewPointerSliceOfSlice() [][]*T
14         // NewSlice3 is not a factory function because 3 nested slices of ...
15         func NewSlice3() [][][]T
17         // NewSliceOfSlice is not a factory function because slices of a ...
18         func NewSliceOfSlice() [][]T
21 TYPES
22         // 
23         type T struct{}
25         // 
26         func New() T
28         // 
29         func NewArray() [1]T
31         // 
32         func NewPointer() *T
34         // 
35         func NewPointerArray() [1]*T
37         // 
38         func NewPointerOfPointer() **T
40         // 
41         func NewPointerSlice() []*T
43         // 
44         func NewSlice() []T