| Server IP : 217.160.0.135 / Your IP : 216.73.217.85 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1074145052 ( 1074145052) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/go/src/go/types/ |
Upload File : |
// Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
// Source: ../../cmd/compile/internal/types2/errors_test.go
// 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 types
import "testing"
func TestError(t *testing.T) {
var err error_
want := "no error"
if got := err.msg(); got != want {
t.Errorf("empty error: got %q, want %q", got, want)
}
want = "foo 42"
err.addf(noposn, "foo %d", 42)
if got := err.msg(); got != want {
t.Errorf("simple error: got %q, want %q", got, want)
}
want = "foo 42\n\tbar 43"
err.addf(noposn, "bar %d", 43)
if got := err.msg(); got != want {
t.Errorf("simple error: got %q, want %q", got, want)
}
}
func TestStripAnnotations(t *testing.T) {
for _, test := range []struct {
in, want string
}{
{"", ""},
{" ", " "},
{"foo", "foo"},
{"foo₀", "foo"},
{"foo(T₀)", "foo(T)"},
} {
got := stripAnnotations(test.in)
if got != test.want {
t.Errorf("%q: got %q; want %q", test.in, got, test.want)
}
}
}