blob: 3ce55b4f6b8c8fd120e62798a85572714062bd32 [file] [log] [blame]
Richard Smith88581592013-02-12 05:48:23 +00001// RUN: rm -rf %t
Richard Smith47972af2015-06-16 00:08:24 +00002// RUN: %clang_cc1 -x objective-c++ -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I %S/Inputs %s -verify -std=c++11
Richard Smith88581592013-02-12 05:48:23 +00003
4@import cxx_linkage_cache;
5
6T x; // expected-error {{unknown type name 'T'}}
7D::U<int> u;
8bool b = f(u);