Introduced via 477d095baef10c0cba22195338be134a4901e874, when `process_file` end scope test was edited. Now we using a variable with the name `end` will cause the scope to end. ## MWE ```fortran program diag implicit none integer :: end if (.true.) then end = 10 end if end program diag ```