#![feature(test, use_extern_macros, proc_macro_non_items)] extern crate squark; extern crate squark_macros; use squark::View; use squark_macros::view; fn v() -> View<()> { let not_completed_count = 1234; let has_completed = true; view! { } } #[test] fn it_works() { let v = v(); }