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