diff --git a/.gitattributes b/.gitattributes index a3b0d4b48c..67493d0ead 100644 --- a/.gitattributes +++ b/.gitattributes @@ -14375,6 +14375,7 @@ tests/test/tarrconstr4.pp svneol=native#text/pascal tests/test/tarrconstr5.pp svneol=native#text/pascal tests/test/tarrconstr6.pp svneol=native#text/pascal tests/test/tarrconstr7.pp svneol=native#text/pascal +tests/test/tarrconstr8.pp svneol=native#text/pascal tests/test/tasm1.pp svneol=native#text/plain tests/test/tasm10.pp svneol=native#text/plain tests/test/tasm10a.pp svneol=native#text/plain diff --git a/compiler/pexpr.pas b/compiler/pexpr.pas index bd23781756..9b0757b2d0 100644 --- a/compiler/pexpr.pas +++ b/compiler/pexpr.pas @@ -2485,16 +2485,26 @@ implementation begin if not try_type_helper(p1,nil) then begin - if pattern='CREATE' then + if p1.nodetype=typen then begin - consume(_ID); - p2:=parse_array_constructor(tarraydef(p1.resultdef)); - p1.destroy; - p1:=p2; + if pattern='CREATE' then + begin + consume(_ID); + p2:=parse_array_constructor(tarraydef(p1.resultdef)); + p1.destroy; + p1:=p2; + end + else + begin + Message2(scan_f_syn_expected,'CREATE',pattern); + p1.destroy; + p1:=cerrornode.create; + consume(_ID); + end; end else begin - Message2(scan_f_syn_expected,'CREATE',pattern); + Message(parser_e_invalid_qualifier); p1.destroy; p1:=cerrornode.create; consume(_ID); diff --git a/tests/test/tarrconstr8.pp b/tests/test/tarrconstr8.pp new file mode 100644 index 0000000000..4e208f05fe --- /dev/null +++ b/tests/test/tarrconstr8.pp @@ -0,0 +1,13 @@ +{ %FAIL } + +program tarrconstr8; + +type + TLongIntArray = array of LongInt; + +var + arr: TLongIntArray; +begin + // Create *must* be used on a type + arr := arr.Create(1, 2); +end.