mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-24 23:57:57 +00:00
Merge pull request #2393 from dtolnay/testbound
Add a test of serde(bound = "") attribute
This commit is contained in:
@@ -257,6 +257,16 @@ fn test_gen() {
|
||||
}
|
||||
assert::<VariantWithTraits2<X, X>>();
|
||||
|
||||
type PhantomDataAlias<T> = PhantomData<T>;
|
||||
|
||||
#[derive(Serialize, Deserialize)]
|
||||
#[serde(bound = "")]
|
||||
struct PhantomDataWrapper<T> {
|
||||
#[serde(default)]
|
||||
field: PhantomDataAlias<T>,
|
||||
}
|
||||
assert::<PhantomDataWrapper<X>>();
|
||||
|
||||
#[derive(Serialize, Deserialize)]
|
||||
struct CowStr<'a>(Cow<'a, str>);
|
||||
assert::<CowStr>();
|
||||
|
||||
Reference in New Issue
Block a user