/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue42587.go
15 строк
263 B
Alberto Donizetti
cmd/compile: mask SLL,SRL,SRAconst shift amount
16 ноя 2020, 11:22
16 ноя 2020, 11:22
f2eea4c
Код
Авторство
О чём код?
// compile // 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 p func f() { var i, j int _ = func() { i = 32 j = j>>i | len([]int{}) } }