Jonas Platte 31331f3165
Bring back ruma-events
Co-authored-by: Kévin Commaille <zecakeh@tedomum.fr>
2023-08-28 10:23:54 +02:00

11 lines
368 B
Rust

#[test]
fn ui() {
let t = trybuild::TestCases::new();
// rustc overflows when compiling this see:
// https://github.com/rust-lang/rust/issues/55779
// there is a workaround in the file.
t.pass("tests/it/ui/04-event-sanity-check.rs");
t.compile_fail("tests/it/ui/05-named-fields.rs");
t.compile_fail("tests/it/ui/06-no-content-field.rs");
}