zng/tests/macro-tests/cases/widget_new/missing_field_all_single.rs

11 lines
242 B
Rust

use zng::{layout::margin, widget::Wgt, APP};
fn main() {
let _scope = APP.minimal();
let _ = Wgt! {
// margin has one field
// this is interpreted as an unnamed assign `{ }` is the value
margin = { }
};
}