1 // RUN: %clangxx -S -ftime-trace -ftime-trace-granularity=0 -o %T/check-time-trace-sections %s
2 // RUN: cat %T/check-time-trace-sections.json | %python %S/check-time-trace-sections.py
3 
4 template <typename T>
foo(T)5 void foo(T) {}
bar()6 void bar() { foo(0); }
7