Remove check for Android in Mips.cpp (#123793)
[llvm-project.git] / flang / test / Semantics / call16.f90
blob12e8c320c97848a6073d3c66268a163560069045
1 ! RUN: %python %S/test_errors.py %s %flang_fc1
3 ! Test that intrinsic functions used as subroutines and vice versa are caught.
5 subroutine test(x, t)
6 intrinsic :: sin, cpu_time
7 !ERROR: Cannot call function 'sin' like a subroutine
8 call sin(x)
9 !ERROR: Cannot call subroutine 'cpu_time' like a function
10 x = cpu_time(t)
11 end subroutine