1 ! RUN: %flang_fc1 -fdebug-unparse %s 2>&1 | FileCheck %s
2 ! Ensures that parentheses are preserved with derived types
9 type(t
), intent(in
) :: x
13 integer, intent(in
) :: m
14 type(t
), save, target
:: res
21 !CHECK: CALL sub(t(n=1_4))
23 !CHECK: CALL sub((t(n=1_4)))
29 !CHECK: CALL sub(f(2_4))
31 !CHECK: CALL sub((f(2_4)))