flang-compiler / f18

F18 is a front-end for Fortran intended to replace the existing front-end in the Flang compiler
230 stars 48 forks source link

Temporarily disable part of data01 test #1013

Closed tskeith closed 4 years ago

tskeith commented 4 years ago

data x /a(1)/ is ambiguous. The data value may be an array element or a structure constructor. We need to parse it as one of these and then fix up the parse tree when it should have been the other one.

My PR 1012 changed the parser to identify this as an array element. That makes this test invalid until we have the right parse tree fixup, so I am disabling it for now.