brintos

brintos / llvm-project-archived public Read only

0
0
Text · 332 B · 786a4ac Raw
16 lines · plain
1! RUN: %python %S/test_errors.py %s %flang_fc12module m3  type base4   contains5     procedure, nopass :: tbp6  end type7  type, extends(base), abstract :: child8   contains9     !ERROR: Override of non-DEFERRED 'tbp' must not be DEFERRED10     procedure(tbp), deferred, nopass :: tbp11  end type12 contains13  subroutine tbp14  end15end16