1//
2PACKAGE issue22856
3
4IMPORTPATH
5	testdata/issue22856
6
7FILENAMES
8	testdata/issue22856.go
9
10FUNCTIONS
11	// NewPointerSliceOfSlice is not a factory function because slices ...
12	func NewPointerSliceOfSlice() [][]*T
13
14	// NewSlice3 is not a factory function because 3 nested slices of ...
15	func NewSlice3() [][][]T
16
17	// NewSliceOfSlice is not a factory function because slices of a ...
18	func NewSliceOfSlice() [][]T
19
20
21TYPES
22	//
23	type T struct{}
24
25	//
26	func New() T
27
28	//
29	func NewArray() [1]T
30
31	//
32	func NewPointer() *T
33
34	//
35	func NewPointerArray() [1]*T
36
37	//
38	func NewPointerOfPointer() **T
39
40	//
41	func NewPointerSlice() []*T
42
43	//
44	func NewSlice() []T
45
46