| 55 | }; |
| 56 | |
| 57 | struct default_construct_test |
| 58 | { |
| 59 | static constexpr auto default_value = 42; |
| 60 | |
| 61 | default_construct_test() : value{default_value}{} |
| 62 | |
| 63 | int value; |
| 64 | }; |
| 65 | constexpr decltype(default_construct_test::default_value) default_construct_test::default_value; |
| 66 | |
| 67 | template <typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected