// This isn't really testing dwarf output, but rather that we can inline f// even though the call precedes the definition.// { dg-options "-gdwarf-2 -dA -O" }// { dg-final { scan-assembler "DW_TAG_inlined_subroutine" } }template<classT>inlineTf(T);intmain(){f(1);}inti;template<classT>inlineTf(Tt){++i;returnt;}