/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue73483.go
20 строк
301 B
Keith Randall
runtime: use precise bounds of Go data/bss for race detector
24 апр 2025, 09:22
24 апр 2025, 09:22
c1fc209
Код
Авторство
О чём код?
// run -race //go:build race && cgo // Copyright 2025 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 /* int v[8192]; */ import "C" var x [8192]C.int func main() { copy(C.v[:], x[:]) }