10 lines · plain
1! RUN: %python %S/test_errors.py %s %flang_fc12 character(len=20) :: a, b3 if (sizeof(a) == sizeof(x=b)) then4 print *, "pass"5 else6 print *, "fail"7 end if8 !ERROR: unknown keyword argument to intrinsic 'sizeof'9 print *, sizeof(a=a)10end