| 430 | bool default_bool; |
| 431 | |
| 432 | TWithDefaultsObj(int64_t required_val, int64_t default_int, String default_str, bool default_bool) |
| 433 | : required_val(required_val), |
| 434 | default_int(default_int), |
| 435 | default_str(default_str), |
| 436 | default_bool(default_bool) {} |
| 437 | explicit TWithDefaultsObj(UnsafeInit) {} |
| 438 | |
| 439 | static void RegisterReflection() { |
nothing calls this directly
no outgoing calls
no test coverage detected