blob: 296cc8034f5ada9a476580a41e192120c27e46f8 [file] [log] [blame]
Richard Smithad0e27b2013-02-12 05:48:23 +00001// 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
6T x; // expected-error {{unknown type name 'T'}}
7D::U<int> u;
8bool b = f(u);