Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test of generic remote derive with getter
Currently fails to compile. error[E0107]: missing generics for struct `StructGeneric` --> test_suite/tests/test_remote.rs:181:18 | 181 | #[serde(remote = "remote::StructGeneric")] | ^^^^^^^^^^^^^^^^^^^^^^^ expected 1 generic argument | note: struct defined here, with 1 generic parameter: `T` --> test_suite/tests/test_remote.rs:78:16 | 78 | pub struct StructGeneric<T> { | ^^^^^^^^^^^^^ - help: add missing generic argument | 181 | #[serde(remote = StructGeneric<T>)] | ~~~~~~~~~~~~~~~~
- Loading branch information