llvm-for-llvmta/tools/clang/test/Modules/Inputs/recursive_visibility_c.h
Nils Hölscher 7f403f4f1e added clang
2022-04-25 13:02:35 +02:00

6 lines
165 B
C++

@import recursive_visibility_b;
template<template<typename T> class Y> void g() {
f(typename Y<A1_Inner::X>::type{});
f(typename Y<A2_More_Inner::X>::type{});
}