Home | History | Annotate | Download | only in PCH
      1 // RUN: %clang_cc1 -fms-extensions -triple i386-unknown-unknown  -x c++-header -emit-pch -o %t %S/cxx-ms-function-specialization-class-scope.h
      2 // RUN: %clang_cc1 -fms-extensions -triple i386-unknown-unknown -include-pch %t -fsyntax-only -verify %s
      3 // expected-no-diagnostics
      4 
      5 
      6 void test2()
      7 {
      8    B<char> b(3);
      9    char* ptr;
     10    b.f(ptr);
     11    b.f<int>(99);
     12    b.f(100);
     13 }
     14 
     15