// RUN: rm -rf %t // RUN: %clang_cc1 -fmodules -verify -fmodules-cache-path=%t -I %S/Inputs/template-default-args -std=c++11 %s // // expected-no-diagnostics template struct A; template struct B; template struct C; template struct D; #include "b.h" template struct A {}; template struct B {}; template struct B; template struct C; template struct D {}; A<> a; B<> b; extern C<> c; D<> d;