0
1
mirror of https://github.com/golang/go synced 2025-05-18 05:16:46 +00:00
Files
go/test/fixedbugs/issue6899.go

14 lines
244 B
Go
Raw Normal View History

// run
// Copyright 2013 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
import "math"
func main() {
println(math.Copysign(0, -1))
}