| Server IP : 91.108.106.88 / Your IP : 216.73.217.88 Web Server : LiteSpeed System : Linux in-mum-web1677.main-hosting.eu 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : u635632881 ( 635632881) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /opt/golang/1.22.0/src/cmd/compile/internal/test/ |
Upload File : |
// Copyright 2021 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 test
import (
"fmt"
"sort"
"testing"
)
// Test that calling methods on generic types doesn't cause allocations.
func genericSorted[T sort.Interface](data T) bool {
n := data.Len()
for i := n - 1; i > 0; i-- {
if data.Less(i, i-1) {
return false
}
}
return true
}
func TestGenericSorted(t *testing.T) {
var data = sort.IntSlice{-10, -5, 0, 1, 2, 3, 5, 7, 11, 100, 100, 100, 1000, 10000}
f := func() {
genericSorted(data)
}
if n := testing.AllocsPerRun(10, f); n > 0 {
t.Errorf("got %f allocs, want 0", n)
}
}
// Test that escape analysis correctly tracks escaping inside of methods
// called on generic types.
type fooer interface {
foo()
}
type P struct {
p *int
q int
}
var esc []*int
func (p P) foo() {
esc = append(esc, p.p) // foo escapes the pointer from inside of p
}
func f[T fooer](t T) {
t.foo()
}
func TestGenericEscape(t *testing.T) {
for i := 0; i < 4; i++ {
var x int = 77 + i
var p P = P{p: &x}
f(p)
}
for i, p := range esc {
if got, want := *p, 77+i; got != want {
panic(fmt.Sprintf("entry %d: got %d, want %d", i, got, want))
}
}
}