mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 12:37:37 +00:00
12 lines
189 B
Rust
12 lines
189 B
Rust
// aux-crate:bevy_ecs=bevy_ecs.rs
|
|
// check-pass
|
|
// Related to Bevy regression #118553
|
|
|
|
extern crate bevy_ecs;
|
|
|
|
use bevy_ecs::*;
|
|
|
|
fn handler<'a>(_: ParamSet<Query<&'a u8>>) {}
|
|
|
|
fn main() {}
|