1// Copyright 2018 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 a
6
7type internal struct {
8 f1 string
9 f2 float64
10}
11
12type S struct {
13 F struct {
14 I internal
15 }
16}
17