Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 1 | // 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 Jeanpierre | 5641325 | 2022-06-02 18:48:24 -0700 | [diff] [blame] | 8 | #pragma clang lifetime_elision |
| 9 | |
Devin Jeanpierre | cc61dad | 2022-07-19 01:40:09 -0700 | [diff] [blame] | 10 | struct DifferentScope final {}; |
Rosica Dejanovska | f9787c9 | 2022-06-22 12:14:57 -0700 | [diff] [blame] | 11 | |
| 12 | namespace test_namespace_bindings { |
| 13 | |
Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 14 | template <typename T> |
Devin Jeanpierre | cc61dad | 2022-07-19 01:40:09 -0700 | [diff] [blame] | 15 | class MyTemplate final { |
Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 16 | 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 | |
| 29 | using MyTypeAlias = MyTemplate<int>; |
| 30 | using OtherTypeAliasInSameTarget = MyTemplate<int>; |
| 31 | |
Devin Jeanpierre | cc61dad | 2022-07-19 01:40:09 -0700 | [diff] [blame] | 32 | struct TemplateParam final {}; |
Rosica Dejanovska | f9787c9 | 2022-06-22 12:14:57 -0700 | [diff] [blame] | 33 | using TemplateWithStructTemplateParam = MyTemplate<TemplateParam>; |
| 34 | using ParamFromDifferentScope = MyTemplate<DifferentScope>; |
| 35 | |
Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 36 | template <typename T1, typename T2> |
Devin Jeanpierre | cc61dad | 2022-07-19 01:40:09 -0700 | [diff] [blame] | 37 | struct TemplateWithTwoParams final { |
Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 38 | T1 value1; |
| 39 | T2 value2; |
| 40 | }; |
| 41 | |
| 42 | using AliasToTemplateWithTwoParams = TemplateWithTwoParams<int, float>; |
| 43 | |
Rosica Dejanovska | f9787c9 | 2022-06-22 12:14:57 -0700 | [diff] [blame] | 44 | using AliasToTemplateOfATemplate = |
| 45 | TemplateWithTwoParams<TemplateWithTwoParams<int, int>, int>; |
| 46 | |
Rosica Dejanovska | d9d2f39 | 2022-08-24 05:31:13 -0700 | [diff] [blame] | 47 | template <typename T> |
| 48 | struct MyStruct { |
| 49 | T t; |
| 50 | }; |
| 51 | |
| 52 | template <> |
| 53 | struct MyStruct<char> {}; |
| 54 | |
Rosica Dejanovska | f9787c9 | 2022-06-22 12:14:57 -0700 | [diff] [blame] | 55 | } // namespace test_namespace_bindings |
| 56 | |
| 57 | template <typename T> |
Devin Jeanpierre | cc61dad | 2022-07-19 01:40:09 -0700 | [diff] [blame] | 58 | struct MyTopLevelTemplate final { |
Rosica Dejanovska | f9787c9 | 2022-06-22 12:14:57 -0700 | [diff] [blame] | 59 | T value; |
| 60 | }; |
| 61 | |
| 62 | using TopLevelTemplateWithNonTopLevelParam = |
| 63 | MyTopLevelTemplate<test_namespace_bindings::TemplateParam>; |
| 64 | |
Rosica Dejanovska | e12d717 | 2022-06-22 12:20:17 -0700 | [diff] [blame] | 65 | template <> |
| 66 | struct MyTopLevelTemplate<int>; |
| 67 | |
| 68 | void processForwardDeclaredSpecialization(MyTopLevelTemplate<int>* i); |
| 69 | |
Lukasz Anforowicz | 6d1aadf | 2022-08-31 09:04:35 -0700 | [diff] [blame] | 70 | namespace template_template_params { |
| 71 | |
| 72 | template <typename TPolicyType> |
| 73 | struct Policy { |
| 74 | static constexpr TPolicyType policy = TPolicyType(); |
| 75 | }; |
| 76 | |
| 77 | template <> |
| 78 | struct Policy<int> { |
| 79 | static constexpr int policy = 42; |
| 80 | }; |
| 81 | |
| 82 | template <template <class> class TPolicy> |
| 83 | class MyTemplate { |
| 84 | public: |
| 85 | static int GetPolicy() { return TPolicy<int>::policy; } |
| 86 | }; |
| 87 | |
| 88 | using MyTypeAlias = MyTemplate<Policy>; |
| 89 | |
| 90 | } // namespace template_template_params |
| 91 | |
Lukasz Anforowicz | f6c8b4d | 2022-09-01 06:58:17 -0700 | [diff] [blame] | 92 | // This namespace is a regression test for b/244227110 that is based on |
Lukasz Anforowicz | 42ab93b | 2022-08-31 11:17:59 -0700 | [diff] [blame] | 93 | // `<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 Anforowicz | f6c8b4d | 2022-09-01 06:58:17 -0700 | [diff] [blame] | 98 | namespace forward_declared_template { |
Lukasz Anforowicz | 42ab93b | 2022-08-31 11:17:59 -0700 | [diff] [blame] | 99 | |
| 100 | template <typename T> |
| 101 | class ForwardDeclaredTemplate; |
| 102 | |
| 103 | using TypeAliasToForwardDeclaredTemplate = ForwardDeclaredTemplate<int>; |
| 104 | |
| 105 | } // namespace forward_declared_template |
| 106 | |
Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 107 | #endif // THIRD_PARTY_CRUBIT_RS_BINDINGS_FROM_CC_TEST_GOLDEN_TEMPLATES_H_ |