brintos

brintos / llvm-project-archived public Read only

0
0
Text · 403 B · 58f0d02 Raw
18 lines · plain
1! Verify that -fdebug-dump-all dumps both symbols and the parse tree, even when semantic errors are present2 3!----------4! RUN lines5!----------6! RUN: not %flang_fc1 -fdebug-dump-all %s 2>&1 | FileCheck %s7 8! CHECK: error: Semantic errors in9! CHECK: Flang: parse tree dump10! CHECK: Flang: symbols dump11 12program bad13  type dt(k)14    integer(kind=16) :: k15    integer(kind=16) :: comp16  end type dt17end18