/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue42686.go
11 строк
281 B
Austin Clements
test: switch fieldtrack test to use GOEXPERIMENT
19 мар 2021, 00:27
19 мар 2021, 00:27
d3ab6b5
Код
Авторство
О чём код?
// compile -goexperiment fieldtrack // Copyright 2020 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 p func a(x struct{ f int }) { _ = x.f } func b() { a(struct{ f int }{}) }