/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue42753.go
13 строк
285 B
Keith Randall
cmd/compile: add test for 42753
21 ноя 2020, 19:46
21 ноя 2020, 19:46
9ea6364
Код
Авторство
О чём код?
// compile -d=ssa/check/on // 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 main func f() uint32 { s := "\x01" x := -int32(s[0]) return uint32(x) & 0x7fffffff }