leptos_macro 0.8.13

view macro for the Leptos web framework.
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(not(feature = "__internal_erase_components"))]
#[test]
fn ui() {
    let t = trybuild::TestCases::new();
    #[cfg(all(feature = "nightly", rustc_nightly))]
    t.compile_fail("tests/ui/component.rs");
    #[cfg(all(feature = "nightly", rustc_nightly))]
    t.compile_fail("tests/ui/component_absolute.rs");
    t.compile_fail("tests/ui/server.rs");
}