/usr/share/go-1.7/test/fixedbugs/issue4654.go is in golang-1.7-src 1.7.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | // errorcheck
// 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.
// Issue 4654.
// Check error for conversion and 'not used' in defer/go.
package p
import "unsafe"
func f() {
defer int(0) // ERROR "defer requires function call, not conversion|is not used"
go string([]byte("abc")) // ERROR "go requires function call, not conversion|is not used"
var c complex128
var f float64
var t struct {X int}
var x []int
defer append(x, 1) // ERROR "defer discards result of append|is not used"
defer cap(x) // ERROR "defer discards result of cap|is not used"
defer complex(1, 2) // ERROR "defer discards result of complex|is not used"
defer complex(f, 1) // ERROR "defer discards result of complex|is not used"
defer imag(1i) // ERROR "defer discards result of imag|is not used"
defer imag(c) // ERROR "defer discards result of imag|is not used"
defer len(x) // ERROR "defer discards result of len|is not used"
defer make([]int, 1) // ERROR "defer discards result of make|is not used"
defer make(chan bool) // ERROR "defer discards result of make|is not used"
defer make(map[string]int) // ERROR "defer discards result of make|is not used"
defer new(int) // ERROR "defer discards result of new|is not used"
defer real(1i) // ERROR "defer discards result of real|is not used"
defer real(c) // ERROR "defer discards result of real|is not used"
defer append(x, 1) // ERROR "defer discards result of append|is not used"
defer append(x, 1) // ERROR "defer discards result of append|is not used"
defer unsafe.Alignof(t.X) // ERROR "defer discards result of unsafe.Alignof|is not used"
defer unsafe.Offsetof(t.X) // ERROR "defer discards result of unsafe.Offsetof|is not used"
defer unsafe.Sizeof(t) // ERROR "defer discards result of unsafe.Sizeof|is not used"
defer copy(x, x) // ok
m := make(map[int]int)
defer delete(m, 1) // ok
defer panic(1) // ok
defer print(1) // ok
defer println(1) // ok
defer recover() // ok
int(0) // ERROR "int\(0\) evaluated but not used|is not used"
string([]byte("abc")) // ERROR "string\(.*\) evaluated but not used|is not used"
append(x, 1) // ERROR "not used"
cap(x) // ERROR "not used"
complex(1, 2) // ERROR "not used"
complex(f, 1) // ERROR "not used"
imag(1i) // ERROR "not used"
imag(c) // ERROR "not used"
len(x) // ERROR "not used"
make([]int, 1) // ERROR "not used"
make(chan bool) // ERROR "not used"
make(map[string]int) // ERROR "not used"
new(int) // ERROR "not used"
real(1i) // ERROR "not used"
real(c) // ERROR "not used"
append(x, 1) // ERROR "not used"
append(x, 1) // ERROR "not used"
unsafe.Alignof(t.X) // ERROR "not used"
unsafe.Offsetof(t.X) // ERROR "not used"
unsafe.Sizeof(t) // ERROR "not used"
}
|