Home | History | Annotate | Download | only in Modules
      1 // RUN: rm -rf %t
      2 // RUN: %clang_cc1 -x objective-c++ -fmodules -fmodules-cache-path=%t -I %S/Inputs %s -verify -std=c++11
      3 
      4 @import cxx_linkage_cache;
      5 
      6 T x; // expected-error {{unknown type name 'T'}}
      7 D::U<int> u;
      8 bool b = f(u);
      9