Commit bd0bb2bc authored by Rémy Oudompheng's avatar Rémy Oudompheng

cmd/gc: fix error message for type errors involving conversions.

Fixes #3818.

R=golang-dev, rsc, r
CC=golang-dev, remy
https://golang.org/cl/6352106
parent 6a135a08
...@@ -1384,6 +1384,7 @@ assignconv(Node *n, Type *t, char *context) ...@@ -1384,6 +1384,7 @@ assignconv(Node *n, Type *t, char *context)
r->type = t; r->type = t;
r->typecheck = 1; r->typecheck = 1;
r->implicit = 1; r->implicit = 1;
r->orig = n;
return r; return r;
} }
......
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