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// Caused a gofrontend crash.
8
9//go:build gccgo
10
11package p
12
13//go:notinheap
14type S1 struct{}
15
16type S2 struct {
17	r      interface{ Read([]byte) (int, error) }
18	s1, s2 []byte
19	p      *S1
20	n      uintptr
21}
22
23var V any = S2{}
24