blob: d0443a2ae13a66a38c530f8bbd8d5a65abe74df1 [file] [log] [blame]
module test_import
implicit none
use something, only: method_a
abstract interface
function interface_record(this) result(status)
import
logical :: status
class(method_a), target, intent(INOUT) :: this
end function
end interface
end module test_import