mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
17e5539f7d
R=golang-dev CC=golang-dev https://golang.org/cl/13521044
17 lines
314 B
Go
17 lines
314 B
Go
// errorcheck
|
|
|
|
// Copyright 2010 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
|
|
|
|
var c chan int
|
|
var v int
|
|
|
|
func main() {
|
|
if c <- v { // ERROR "used as value"
|
|
}
|
|
}
|
|
|
|
var _ = c <- v // ERROR "used as value"
|