Remove check for Android in Mips.cpp (#123793)
[llvm-project.git] / flang / test / Semantics / assign14.f90
blob14a81567338c08e24130e7ae33351fe2e4375f8a
1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 ! Can't associate a pointer with a substring of a character literal
3 program main
4 character(:), pointer :: cp
5 !ERROR: Target associated with pointer 'cp' must be a designator or a call to a pointer-valued function
6 cp => "abcd"(1:4)
7 end