GoPLS Viewer

Home|gopls/go/internal/gccgoimporter/testdata/issue31540.go
1// Copyright 2019 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package issue31540
6
7type Y struct {
8    q int
9}
10
11type Z map[int]int
12
13type X = map[Y]Z
14
15type A1 = X
16
17type A2 = A1
18
19type S struct {
20    b int
21    A2
22}
23
24func Hallo() S {
25    return S{}
26}
27
MembersX
Y
Y.q
Z
X
S
S.b
Hallo
Members
X