| 12 | // trying to copy a hana::just. |
| 13 | |
| 14 | int main() { |
| 15 | auto just = hana::just(hana::test::trap_construct{}); |
| 16 | auto implicit_copy = just; |
| 17 | decltype(just) explicit_copy(just); |
| 18 | |
| 19 | (void)implicit_copy; |
| 20 | (void)explicit_copy; |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected