Files
pezkuwi-subxt/substrate/primitives/api/test/tests/ui/adding_self_parameter.rs
T
Benjamin Kampmann 8721d98dd6 break sp-api dependency cycle (#4352)
* move benches into tests, ignore non-passing doctests

* Rename sr-api folder

* Move test-primitives to primitives, use that for sp-api doctests
2019-12-10 20:18:01 +01:00

8 lines
83 B
Rust

sp_api::decl_runtime_apis! {
pub trait Api {
fn test(&self);
}
}
fn main() {}