Annotation that marks a class as local to the module:
| 116 | |
| 117 | /// Annotation that marks a class as local to the module: |
| 118 | struct module_local { |
| 119 | const bool value; |
| 120 | constexpr explicit module_local(bool v = true) : value(v) {} |
| 121 | }; |
| 122 | |
| 123 | /// Annotation to mark enums as an arithmetic type |
| 124 | struct arithmetic {}; |
no outgoing calls