[flang] Accept polymorphic component element in storage_size
[llvm-project.git] / flang / test / Semantics / Inputs / modfile09-a.f90
blob1e614ea3cf323cfe220757dee5b0c514ab63bf30
1 module m
2 integer :: m1_x
3 interface
4 module subroutine s()
5 end subroutine
6 end interface
7 end
9 !Expect: m.mod
10 !module m
11 !integer(4)::m1_x
12 !interface
13 !module subroutine s()
14 !end
15 !end interface
16 !end