/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue69825.go
18 строк
287 B
Keith Randall
cmd/compile: use call block instead of entry block for tail call expansion
09 окт 2024, 21:20
09 окт 2024, 21:20
5428570
Код
Авторство
О чём код?
// 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) { }