mirror of
https://github.com/golang/go
synced 2024-11-15 10:40:35 -07:00
19 lines
287 B
Go
19 lines
287 B
Go
|
// compile -d=libfuzzer
|
||
|
|
||
|
// 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.
|
||
|
|
||
|
package main
|
||
|
|
||
|
type T struct {
|
||
|
A
|
||
|
}
|
||
|
|
||
|
type A struct {
|
||
|
}
|
||
|
|
||
|
//go:noinline
|
||
|
func (a *A) Foo(s [2]string) {
|
||
|
}
|