We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fc1672 commit 10a5276Copy full SHA for 10a5276
packages/std/src/deps.rs
@@ -126,6 +126,7 @@ mod tests {
126
127
#[test]
128
fn deps_implements_copy() {
129
+ #[allow(non_local_definitions)]
130
impl CustomQuery for u64 {}
131
132
// With C: Copy
packages/std/src/results/cosmos_msg.rs
@@ -488,6 +488,8 @@ mod tests {
488
489
// should work with Into<AnyMsg>
490
struct IntoAny;
491
+
492
493
impl From<IntoAny> for AnyMsg {
494
fn from(_: IntoAny) -> Self {
495
AnyMsg {
@@ -496,6 +498,7 @@ mod tests {
496
498
}
497
499
500
501
502
let msg: CosmosMsg = IntoAny.into();
503
assert!(matches!(
504
msg,
0 commit comments