ruwuma/crates/ruma-common/tests/api/ui/deprecated-without-added.rs
2022-11-12 10:17:24 +01:00

16 lines
307 B
Rust

use ruma_common::{api::Metadata, metadata};
const _: Metadata = metadata! {
description: "This will fail.",
method: GET,
name: "invalid_versions",
rate_limited: false,
authentication: None,
history: {
unstable => "/a/path",
1.1 => deprecated,
}
};
fn main() {}