1// Copyright 2021 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 main 6 7import ( 8 bad "issue47185.dir/bad" 9) 10 11func main() { 12 another() 13 bad.Bad() 14} 15 16func another() L { 17 m := make(map[string]L) 18 return m[""] 19} 20 21type L struct { 22 A Data 23 B Data 24} 25 26type Data struct { 27 F1 [22][]string 28} 29