1
0
mirror of https://github.com/golang/go synced 2024-09-29 10:24:34 -06:00
go/test/fixedbugs/issue42753.go

14 lines
285 B
Go
Raw Normal View History

// 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
}