mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* time for more hygiene * update corresponding tests * while I'm at it * now let's fix the actual issue * fix the publish examples CI while I'm at it * resolve clippy warnings
10 lines
114 B
Rust
10 lines
114 B
Rust
use yew::prelude::*;
|
|
|
|
struct Unimplemented;
|
|
|
|
fn compile_fail() {
|
|
html! { <Unimplemented /> };
|
|
}
|
|
|
|
fn main() {}
|