zng/tests/macro-tests/cases/widget/cannot_instantiate_widget_m...

10 lines
155 B
Rust

use zng::prelude_wgt::widget_mixin;
#[widget_mixin]
pub struct TextMix<P>(P);
fn main() {
let _scope = zng::APP.minimal();
let _ = TextMix!();
}