Commit 1ee4512b authored by Anthony Martin's avatar Anthony Martin Committed by Russ Cox

gc: better error message for bad type in channel send

# test program
1 package main
2
3 type C chan int
4
5 func F(c C) {
6 	c <- true
7 }

# old error
test.go:6: cannot use true (type bool) as type int in function argument

# new error
test.go:6: cannot use true (type bool) as type int in channel send

R=rsc, ejsherry
CC=golang-dev
https://golang.org/cl/3231042
parent e21aac29
...@@ -656,6 +656,7 @@ reswitch: ...@@ -656,6 +656,7 @@ reswitch:
r = n->right; r = n->right;
if((t = r->type) == T) if((t = r->type) == T)
goto error; goto error;
r = assignconv(r, l->type->type, "send");
// TODO: more aggressive // TODO: more aggressive
n->etype = 0; n->etype = 0;
n->type = T; n->type = T;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment