mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 14:40:44 +00:00
14 lines
249 B
Rust
14 lines
249 B
Rust
|
// Given an `rsx!` invocation with a missing trailing comma,
|
||
|
// ensure the stderr output has an informative span.
|
||
|
|
||
|
use dioxus::prelude::*;
|
||
|
|
||
|
fn main() {
|
||
|
rsx! {
|
||
|
p {
|
||
|
class: "foo bar"
|
||
|
"Hello world"
|
||
|
}
|
||
|
};
|
||
|
}
|