Richard Smith | 8858159 | 2013-02-12 05:48:23 +0000 | [diff] [blame] | 1 | // RUN: rm -rf %t |
Richard Smith | 47972af | 2015-06-16 00:08:24 +0000 | [diff] [blame] | 2 | // RUN: %clang_cc1 -x objective-c++ -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I %S/Inputs %s -verify -std=c++11 |
Richard Smith | 8858159 | 2013-02-12 05:48:23 +0000 | [diff] [blame] | 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); |