serde/test_suite
David Tolnay 7328b34810
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>)]
        |                  ~~~~~~~~~~~~~~~~
2022-11-27 17:17:52 -08:00
..
no_std Add authors to Cargo.toml 2022-07-31 19:25:47 -07:00
tests Add test of generic remote derive with getter 2022-11-27 17:17:52 -08:00
build.rs Update macrotest to 1.0.9 and enable in CI 2022-06-20 03:40:49 -07:00
Cargo.toml Ui test changes for trybuild 1.0.66 2022-10-04 22:28:38 -07:00