From d4134e85985c8cab8e83863e0b11840486028fee Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 27 Jun 2013 19:20:08 +0000 Subject: 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 --- gcc/go/gofrontend/parse.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.1