rust/tests/target/issue_3934.rs
2020-08-09 14:32:34 -05:00

9 lines
216 B
Rust

mod repro {
pub fn push() -> Result<(), ()> {
self.api.map_api_result(|api| {
#[allow(deprecated)]
match api.apply_extrinsic_before_version_4_with_context()? {}
})
}
}