LGTM On Fri, Sep 6, 2013 at 1:15 PM, <rsc@golang.org> wrote: > Reviewers: golang-dev1, > ...
11 years, 6 months ago
(2013-09-06 20:24:35 UTC)
#3
LGTM
On Fri, Sep 6, 2013 at 1:15 PM, <rsc@golang.org> wrote:
> Reviewers: golang-dev1,
>
> Message:
> Hello golang-dev (cc: golang-dev@googlegroups.com),
>
> I'd like you to review this change to
> https://code.google.com/p/go/
>
>
> Description:
> test: fix build (update for new error message)
>
> Please review this at
https://codereview.appspot.**com/13521044/<https://codereview.appspot.com/135...
>
> Affected files (+2, -2 lines):
> M test/syntax/chan1.go
>
>
> Index: test/syntax/chan1.go
> ==============================**==============================**=======
> --- a/test/syntax/chan1.go
> +++ b/test/syntax/chan1.go
> @@ -10,8 +10,8 @@
> var v int
>
> func main() {
> - if c <- v { // ERROR "send statement.*value.*select"
> + if c <- v { // ERROR "used as value"
> }
> }
>
> -var _ = c <- v // ERROR "send statement.*value.*select"
> +var _ = c <- v // ERROR "used as value"
>
>
> --
>
> ---You received this message because you are subscribed to the Google
> Groups "golang-dev" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to
golang-dev+unsubscribe@**googlegroups.com<golang-dev%2Bunsubscribe@googlegrou...
> .
> For more options, visit
https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/o...
> .
>
Issue 13521044: code review 13521044: test: fix build (update for new error message)
(Closed)
Created 11 years, 6 months ago by rsc
Modified 11 years, 6 months ago
Reviewers: bradfitz
Base URL:
Comments: 0