xref: /llvm-project/flang/test/Semantics/resolve03.f90 (revision 6c1ac141d3c98af9738bc77fcb55602cbff7751f)
1! RUN: %python %S/test_errors.py %s %flang_fc1
2implicit none
3integer :: x
4!ERROR: No explicit type declared for 'y'
5y = x
6end
7