Files

19 lines
287 B
Go
Raw Permalink Normal View History

2025-02-14 12:42:07 +07:00
// compile -d=libfuzzer
2024-09-21 23:49:08 +10:00
// Copyright 2024 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2025-02-14 12:42:07 +07:00
package main
type T struct {
A
}
2024-09-21 23:49:08 +10:00
2025-02-14 12:42:07 +07:00
type A struct {
}
2024-09-21 23:49:08 +10:00
2025-02-14 12:42:07 +07:00
//go:noinline
func (a *A) Foo(s [2]string) {
2024-09-21 23:49:08 +10:00
}