aboutsummaryrefslogtreecommitdiff
path: root/gopls/internal/lsp/testdata/builtins/builtin_types.go
blob: 93a4a709500d2d00e8ce3771a98055ee4f0cd59e (plain)
1
2
3
4
5
6
7
8
9
10
11
package builtins

func _() {
	var _ []bool //@item(builtinBoolSliceType, "[]bool", "[]bool", "type")

	var _ []bool = make() //@rank(")", builtinBoolSliceType, int)

	var _ []bool = make([], 0) //@rank(",", bool, int)

	var _ [][]bool = make([][], 0) //@rank(",", bool, int)
}