blob: 36d7d78c130f88ef2ae655cec584657fb06837d5 [file] [log] [blame]
Richard Smith5de91b52013-06-25 01:25:15 +00001@import cxx_templates_common;
2
Richard Smith8f8f05c2013-06-24 04:45:28 +00003template<typename T> T f();
4template<typename T> T f(T t) { return t; }
5namespace N {
6 template<typename T> T f();
7 template<typename T> T f(T t) { return t; }
8}
Richard Smithbf78e642013-06-24 22:51:00 +00009
10template<typename> int template_param_kinds_1();
11template<template<typename, int, int...> class> int template_param_kinds_2();
12template<template<typename T, typename U, U> class> int template_param_kinds_3();
Richard Smith5de91b52013-06-25 01:25:15 +000013
14template<typename T> struct SomeTemplate<T&> {};
15template<typename T> struct SomeTemplate<T&>;
16typedef SomeTemplate<int&> SomeTemplateIntRef;
Richard Smith0e5d7b82013-07-25 23:08:39 +000017
18extern DefinedInCommon &defined_in_common;
19
20@import cxx_templates_b_impl;
21
22template<typename T, typename> struct Identity { typedef T type; };
23template<typename T> void UseDefinedInBImpl() {
24 typename Identity<DefinedInBImpl, T>::type dependent;
25 FoundByADL(dependent);
26 typename Identity<DefinedInBImpl, T>::type::Inner inner;
27 dependent.f();
28}
29
30extern DefinedInBImpl &defined_in_b_impl;
31
32@import cxx_templates_a;
33template<typename T> void UseDefinedInBImplIndirectly(T &v) {
34 PerformDelayedLookup(v);
35}
36
37void TriggerInstantiation() {
38 UseDefinedInBImpl<void>();
39}