Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / go.test / test / fixedbugs / bug283.go
blob45ee9082f0c277bc326124a397ca042ab145e99a
1 // $G $D/$F.go || echo BUG: should compile
3 // Copyright 2010 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
7 // http://code.google.com/p/go/issues/detail?id=806
8 // triggered out of registers on 8g
10 package main
12 type Point struct {
13 x int
14 y int
17 func dist(p0, p1 Point) float64 {
18 return float64((p0.x-p1.x)*(p0.x-p1.x) + (p0.y-p1.y)*(p0.y-p1.y))