blob: 3f9102a1d477ee4d498d00f52864d86e2bc3b83a [file] [log] [blame]
// PR c++/122628
// { dg-additional-options "-fmodules" }
template <typename T> static void baz(T) {}
template <typename T> static void bar(T) { baz(0); }
void foo() {
bar(0);
}