summaryrefslogtreecommitdiff
path: root/test cases/fortran/15 include/subprojects/cmake_inc/main.f90
blob: dd2991d03e3f0717ad61ee9293b38926dcdf9780 (plain)
1
2
3
4
5
6
7
8
9
program test_subproject_inc

implicit none

include 'thousand.f90'

if (thousand /= 1000) error stop 'did not include properly'

end program