mirror of
https://github.com/golang/go
synced 2024-11-05 18:36:10 -07:00
adda7ad295
Change-Id: I3c784986755cfbbe1b8eb8da4d64227bd109a3b0 Reviewed-on: https://go-review.googlesource.com/27203 Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Robert Griesemer <gri@golang.org>
18 lines
363 B
Go
18 lines
363 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|missing condition|invalid condition"
|
|
}
|
|
}
|
|
|
|
var _ = c <- v // ERROR "used as value|unexpected <-"
|