We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2136e15 commit 6365efbCopy full SHA for 6365efb
test/fixedbugs/issue52841.go
@@ -0,0 +1,30 @@
1
+// compile
2
+
3
+// Copyright 2022 The Go Authors. All rights reserved.
4
+// Use of this source code is governed by a BSD-style
5
+// license that can be found in the LICENSE file.
6
7
+// Issue 52841: gofrontend crashed writing export data
8
9
+package p
10
11
+func F() {
12
+ x := ([17][1]interface {
13
+ Method9()
14
+ Method10()
15
+ }{
16
+ func() (V47 [1]interface {
17
18
19
+ }) {
20
+ return
21
+ }(),
22
+ func(V48 string) (V49 [1]interface {
23
24
25
26
27
+ }("440"),
28
+ })
29
+ _ = x
30
+}
0 commit comments