1
0
Fork 0
ruma/crates/ruma-events/tests/it/ui/12-no-relates_to.rs
Kévin Commaille 2c4f3a81c8 events: Update trybuild output
Warnings are added because of the `unexpected_cfgs` lint.
2025-01-09 20:54:14 +01:00

12 lines
301 B
Rust

#![allow(unexpected_cfgs)]
use ruma_macros::EventContent;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
#[ruma_event(type = "m.macro.test", kind = MessageLike, without_relation)]
pub struct MacroTestContent {
pub url: String,
}
fn main() {}