blob: 12894f3366e8b3f1b0b14c063e71c8b0e3beec09 [file] [log] [blame]
Dmitri Gribenkoe9bcf5b2013-11-04 21:51:33 +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
Dmitri Gribenkoe9bcf5b2013-11-04 21:51:33 +00003
4// expected-no-diagnostics
5
6@import recursive_visibility_c;
7
8template<typename T> struct Z { typedef T type; };
9template void g<Z>();