1 2 3 4 5 6 7 8 9 10 11
#![allow(unused)] use bevy::prelude::*; struct Foo; #[bevycheck::system] fn system(_: Foo) {} fn main() { IntoSystem::into_system(system); }