blob: 12e8c320c97848a6073d3c66268a163560069045 [file] [log] [blame]
! RUN: %python %S/test_errors.py %s %flang_fc1
! Test that intrinsic functions used as subroutines and vice versa are caught.
subroutine test(x, t)
intrinsic :: sin, cpu_time
!ERROR: Cannot call function 'sin' like a subroutine
call sin(x)
!ERROR: Cannot call subroutine 'cpu_time' like a function
x = cpu_time(t)
end subroutine