mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
no-bound derives: Use absolute path for core (#1763)
Closes: https://github.com/paritytech/polkadot-sdk/issues/1718
This commit is contained in:
@@ -647,3 +647,17 @@ fn check_storage_parameter_type_works() {
|
||||
assert_eq!(300, StorageParameter::get());
|
||||
})
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn derive_partial_eq_no_bound_core_mod() {
|
||||
mod core {}
|
||||
|
||||
#[derive(
|
||||
crate::PartialEqNoBound,
|
||||
crate::CloneNoBound,
|
||||
crate::DebugNoBound,
|
||||
crate::DefaultNoBound,
|
||||
crate::EqNoBound,
|
||||
)]
|
||||
struct Test;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user