rust/tests/ui/implied-bounds/bevy_world_query.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
189 B
Rust
Raw Normal View History

2023-12-08 18:20:14 -03:00
// 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() {}