mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* update rust version for macro test to 1.51 * enable const generic tests * run integration tests using MSRV * am blind * clippy, fmt * apply suggestion
8 lines
222 B
Rust
8 lines
222 B
Rust
#[allow(dead_code)]
|
|
#[rustversion::attr(stable(1.51), test)]
|
|
fn classes_macro() {
|
|
let t = trybuild::TestCases::new();
|
|
t.pass("tests/classes_macro/*-pass.rs");
|
|
t.compile_fail("tests/classes_macro/*-fail.rs");
|
|
}
|