/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue25741.go
14 строк
234 B
Richard Musiol
cmd/compile: fix OffPtr with negative offset on wasm
06 июн 2018, 17:40
06 июн 2018, 17:40
88dc4ae
Код
Авторство
О чём код?
// compile // Copyright 2018 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 var s []int func main() { i := -1 s[i] = 0 }