From: Ian Lance Taylor Date: Thu, 27 Jun 2013 19:20:08 +0000 (+0000) Subject: compiler: more consistent error message for [...]T(x) X-Git-Tag: upstream/12.2.0~69026 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d4134e85985c8cab8e83863e0b11840486028fee;p=platform%2Fupstream%2Fgcc.git compiler: more consistent error message for [...]T(x) The message should be similar to the one for "var x [...]T", not to the message for []T(x...). From-SVN: r200490 --- diff --git a/gcc/go/gofrontend/parse.cc b/gcc/go/gofrontend/parse.cc index 5a9feb7..429d91b 100644 --- a/gcc/go/gofrontend/parse.cc +++ b/gcc/go/gofrontend/parse.cc @@ -3040,7 +3040,7 @@ Parse::primary_expr(bool may_be_sink, bool may_be_composite_lit, && t->array_type()->length()->is_nil_expression()) { error_at(ret->location(), - "invalid use of %<...%> in type conversion"); + "use of %<[...]%> outside of array literal"); ret = Expression::make_error(loc); } else