8 lines · plain
1! RUN: %python %S/test_errors.py %s %flang_fc12! Can't associate a pointer with a substring of a character literal3program main4 character(:), pointer :: cp5 !ERROR: Target associated with pointer 'cp' must be a designator or a call to a pointer-valued function6 cp => "abcd"(1:4)7end8