| 49 | struct empty {}; |
| 50 | |
| 51 | struct struct_with_empty { |
| 52 | alignas(sizeof(int) * 2) int a; |
| 53 | TUPLET_NO_UNIQUE_ADDRESS empty b; |
| 54 | int c; |
| 55 | }; |
| 56 | |
| 57 | #if TUPLET_HAS_NO_UNIQUE_ADDRESS && !(defined _MSC_VER) |
| 58 | static_assert(offsetof(struct_with_empty, b) == 0); |
nothing calls this directly
no outgoing calls
no test coverage detected