mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
### Problem
The html! macro didn't properly handle explicit return types in
callbacks, considering the '>' in '->' as the end of the HTML tag.
```rust
html! {
<div onblur=|_| -> u32 0 />
// ^ here
}
```
Fixes: #560