| 1035 | } // local_middleware |
| 1036 | |
| 1037 | struct OnlyMoveConstructor |
| 1038 | { |
| 1039 | OnlyMoveConstructor(int) {} |
| 1040 | OnlyMoveConstructor(const OnlyMoveConstructor&) = delete; |
| 1041 | OnlyMoveConstructor(OnlyMoveConstructor&&) = default; |
| 1042 | }; |
| 1043 | |
| 1044 | TEST_CASE("app_constructor") |
| 1045 | { |