ui: Add dummpy / explanatory main function
This fixes regressions in the CI suite that fail otherwise unrelated pull requests, probably due to nowadays stricter clippy errors (`cargo +nightly clippy` previously failed with 'error[E0601]: `main` function not found in crate `typed_html_tests`').
This commit is contained in:
parent
e65a960a3f
commit
bf42fe1c48
|
@ -1,3 +1,7 @@
|
||||||
|
fn main() {
|
||||||
|
println!("This crate is not meant to be run, it only serves as a compilation test.");
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn ui() {
|
fn ui() {
|
||||||
extern crate version_check;
|
extern crate version_check;
|
||||||
|
|
Loading…
Reference in New Issue