If I have fn roundtrip<T>, I would think test-fuzz can maintain a separate corpus for each T, and generate an entrypoint for each one. However, I must specify T e.g. #[test_fuzz(generic_args = "String")] and can only provide one type as a list will fail to be parsed by the proc macro.
It would be nice to generate a binary for each generic arg in the list and be able to run all of them without having to replace the type manually. Maybe I am missing a better way to do this...