summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr88376.f90
blob: 5dd0181b09b02970f4ae41b4174ae1aff7e6a157 (plain)
1
2
3
4
5
6
7
8
! { dg-do compile }
module m
   integer :: n
contains
   subroutine s
      character(n(3)) :: c  ! { dg-error "not a function" }
   end
end