/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue44732.dir/foo/foo.go
13 строк
262 B
Cuong Manh Le
cmd/compile: fix width not calculated for imported type
08 мар 2021, 22:43
08 мар 2021, 22:43
fee3cd4
Код
Авторство
О чём код?
// Copyright 2021 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 foo type Foo struct { updatecb func() } func NewFoo() *Foo { return &Foo{updatecb: nil} }