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: releases/gcc-4.9.0~5212 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4134e85985c8cab8e83863e0b11840486028fee;p=thirdparty%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 5a9feb7280bb..429d91bafe2b 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