fpp/compiler/tools/fpp-check/test/interface/duplicate_import.fpp
2025-10-02 15:11:46 -07:00

8 lines
60 B
Fortran

interface I {
}
interface I2 {
import I
import I
}