1 // RUN: %clang_cc1 -emit-llvm-only -fmodules -triple x86_64-windows %s
3 #pragma clang module build foo
5 #pragma clang module contents
6 template <typename T
> struct A
{
9 #pragma clang module endbuild
10 #pragma clang module import foo
11 void g() { f(A
<int>()); }