blob: 816f32b3f1dabfadf29f4226d0656dee648223c8 [file] [log] [blame]
Lukasz Anforowiczb1ff2e52022-05-16 10:54:23 -07001// Part of the Crubit project, under the Apache License v2.0 with LLVM
2// Exceptions. See /LICENSE for license information.
3// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
5#ifndef THIRD_PARTY_CRUBIT_RS_BINDINGS_FROM_CC_TEST_GOLDEN_TEMPLATES_H_
6#define THIRD_PARTY_CRUBIT_RS_BINDINGS_FROM_CC_TEST_GOLDEN_TEMPLATES_H_
7
Devin Jeanpierre56413252022-06-02 18:48:24 -07008#pragma clang lifetime_elision
9
Devin Jeanpierrecc61dad2022-07-19 01:40:09 -070010struct DifferentScope final {};
Rosica Dejanovskaf9787c92022-06-22 12:14:57 -070011
12namespace test_namespace_bindings {
13
Lukasz Anforowiczb1ff2e52022-05-16 10:54:23 -070014template <typename T>
Devin Jeanpierrecc61dad2022-07-19 01:40:09 -070015class MyTemplate final {
Lukasz Anforowiczb1ff2e52022-05-16 10:54:23 -070016 public:
17 static MyTemplate Create(T value) {
18 MyTemplate result;
19 result.value_ = value;
20 return result;
21 }
22
23 const T& value() const { return value_; }
24
25 private:
26 T value_;
27};
28
29using MyTypeAlias = MyTemplate<int>;
30using OtherTypeAliasInSameTarget = MyTemplate<int>;
31
Devin Jeanpierrecc61dad2022-07-19 01:40:09 -070032struct TemplateParam final {};
Rosica Dejanovskaf9787c92022-06-22 12:14:57 -070033using TemplateWithStructTemplateParam = MyTemplate<TemplateParam>;
34using ParamFromDifferentScope = MyTemplate<DifferentScope>;
35
Lukasz Anforowiczb1ff2e52022-05-16 10:54:23 -070036template <typename T1, typename T2>
Devin Jeanpierrecc61dad2022-07-19 01:40:09 -070037struct TemplateWithTwoParams final {
Lukasz Anforowiczb1ff2e52022-05-16 10:54:23 -070038 T1 value1;
39 T2 value2;
40};
41
42using AliasToTemplateWithTwoParams = TemplateWithTwoParams<int, float>;
43
Rosica Dejanovskaf9787c92022-06-22 12:14:57 -070044using AliasToTemplateOfATemplate =
45 TemplateWithTwoParams<TemplateWithTwoParams<int, int>, int>;
46
Rosica Dejanovskad9d2f392022-08-24 05:31:13 -070047template <typename T>
48struct MyStruct {
49 T t;
50};
51
52template <>
53struct MyStruct<char> {};
54
Rosica Dejanovskaf9787c92022-06-22 12:14:57 -070055} // namespace test_namespace_bindings
56
57template <typename T>
Devin Jeanpierrecc61dad2022-07-19 01:40:09 -070058struct MyTopLevelTemplate final {
Rosica Dejanovskaf9787c92022-06-22 12:14:57 -070059 T value;
60};
61
62using TopLevelTemplateWithNonTopLevelParam =
63 MyTopLevelTemplate<test_namespace_bindings::TemplateParam>;
64
Rosica Dejanovskae12d7172022-06-22 12:20:17 -070065template <>
66struct MyTopLevelTemplate<int>;
67
68void processForwardDeclaredSpecialization(MyTopLevelTemplate<int>* i);
69
Lukasz Anforowicz6d1aadf2022-08-31 09:04:35 -070070namespace template_template_params {
71
72template <typename TPolicyType>
73struct Policy {
74 static constexpr TPolicyType policy = TPolicyType();
75};
76
77template <>
78struct Policy<int> {
79 static constexpr int policy = 42;
80};
81
82template <template <class> class TPolicy>
83class MyTemplate {
84 public:
85 static int GetPolicy() { return TPolicy<int>::policy; }
86};
87
88using MyTypeAlias = MyTemplate<Policy>;
89
90} // namespace template_template_params
91
Lukasz Anforowiczf6c8b4d2022-09-01 06:58:17 -070092// This namespace is a regression test for b/244227110 that is based on
Lukasz Anforowicz42ab93b2022-08-31 11:17:59 -070093// `<iosfwd>`:
94// - `ForwardDeclaredTemplate` corresponds roughly to the `basic_ios` class
95// template.
96// - `TypeAliasToForwardDeclaredTemplate` corresponds toughtly to the
97// `typedef basic_ios<char> ios` type alias.
Lukasz Anforowiczf6c8b4d2022-09-01 06:58:17 -070098namespace forward_declared_template {
Lukasz Anforowicz42ab93b2022-08-31 11:17:59 -070099
100template <typename T>
101class ForwardDeclaredTemplate;
102
103using TypeAliasToForwardDeclaredTemplate = ForwardDeclaredTemplate<int>;
104
105} // namespace forward_declared_template
106
Lukasz Anforowiczb1ff2e52022-05-16 10:54:23 -0700107#endif // THIRD_PARTY_CRUBIT_RS_BINDINGS_FROM_CC_TEST_GOLDEN_TEMPLATES_H_