/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue45665.go
15 строк
290 B
Cuong Manh Le
cmd/compile: allow export/import OSLICE2ARRPTR
21 апр 2021, 12:07
21 апр 2021, 12:07
5f1df26
Код
Авторство
О чём код?
// compile // 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 main func main() { Get([]string{"a", "b"}) } func Get(ss []string) *[2]string { return (*[2]string)(ss) }