[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / SemaTemplate / instantiate-expr-6.cpp
blobe6f7fe3f6607245e3dab082ece4ded41beedc4f2
1 // RUN: %clang_cc1 -std=c++11 -emit-llvm-only %s
3 struct X {
4 template<typename T> static typename T::type g(T t);
5 template<typename T> auto f(T t) -> decltype(g(t));
6 void f(...);
7 };
9 void test() {
10 X().f(0);
11 X().f(0);