1! RUN: %S/test_errors.sh %s %t %flang_fc1
2! REQUIRES: shell
3implicit none
4allocatable :: x
5integer :: x
6!ERROR: No explicit type declared for 'y'
7allocatable :: y
8end
9