-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
211 additions
and
0 deletions.
There are no files selected for viewing
92 changes: 92 additions & 0 deletions
92
crates/bevy_ecs_compile_fail_tests/tests/ui/query_lifetime_safety.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
use bevy_ecs::prelude::*; | ||
use bevy_ecs::system::SystemState; | ||
|
||
#[derive(Component, Eq, PartialEq, Debug)] | ||
struct Foo(u32); | ||
|
||
fn main() { | ||
let mut world = World::default(); | ||
let e = world.spawn().insert(Foo(10_u32)).id(); | ||
|
||
let mut system_state = SystemState::<Query<&mut Foo>>::new(&mut world); | ||
{ | ||
let mut query = system_state.get_mut(&mut world); | ||
dbg!("hi"); | ||
{ | ||
let data: &Foo = query.get(e).unwrap(); | ||
let mut data2: Mut<Foo> = query.get_mut(e).unwrap(); | ||
assert_eq!(data, &mut *data2); // oops UB | ||
} | ||
|
||
{ | ||
let mut data2: Mut<Foo> = query.get_mut(e).unwrap(); | ||
let data: &Foo = query.get(e).unwrap(); | ||
assert_eq!(data, &mut *data2); // oops UB | ||
} | ||
|
||
{ | ||
let data: &Foo = query.get_component::<Foo>(e).unwrap(); | ||
let mut data2: Mut<Foo> = query.get_component_mut(e).unwrap(); | ||
assert_eq!(data, &mut *data2); // oops UB | ||
} | ||
|
||
{ | ||
let mut data2: Mut<Foo> = query.get_component_mut(e).unwrap(); | ||
let data: &Foo = query.get_component::<Foo>(e).unwrap(); | ||
assert_eq!(data, &mut *data2); // oops UB | ||
} | ||
|
||
{ | ||
let data: &Foo = query.single(); | ||
let mut data2: Mut<Foo> = query.single_mut(); | ||
assert_eq!(data, &mut *data2); // oops UB | ||
} | ||
|
||
{ | ||
let mut data2: Mut<Foo> = query.single_mut(); | ||
let data: &Foo = query.single(); | ||
assert_eq!(data, &mut *data2); // oops UB | ||
} | ||
|
||
{ | ||
let data: &Foo = query.get_single().unwrap(); | ||
let mut data2: Mut<Foo> = query.get_single_mut().unwrap(); | ||
assert_eq!(data, &mut *data2); // oops UB | ||
} | ||
|
||
{ | ||
let mut data2: Mut<Foo> = query.get_single_mut().unwrap(); | ||
let data: &Foo = query.get_single().unwrap(); | ||
assert_eq!(data, &mut *data2); // oops UB | ||
} | ||
|
||
{ | ||
let data: &Foo = query.iter().next().unwrap(); | ||
let mut data2: Mut<Foo> = query.iter_mut().next().unwrap(); | ||
assert_eq!(data, &mut *data2); // oops UB | ||
} | ||
|
||
{ | ||
let mut data2: Mut<Foo> = query.iter_mut().next().unwrap(); | ||
let data: &Foo = query.iter().next().unwrap(); | ||
assert_eq!(data, &mut *data2); // oops UB | ||
} | ||
|
||
{ | ||
let mut opt_data: Option<&Foo> = None; | ||
let mut opt_data_2: Option<Mut<Foo>> = None; | ||
query.for_each(|data| opt_data = Some(data)); | ||
query.for_each_mut(|data| opt_data_2 = Some(data)); | ||
assert_eq!(opt_data.unwrap(), &mut *opt_data_2.unwrap()); // oops UB | ||
} | ||
|
||
{ | ||
let mut opt_data_2: Option<Mut<Foo>> = None; | ||
let mut opt_data: Option<&Foo> = None; | ||
query.for_each_mut(|data| opt_data_2 = Some(data)); | ||
query.for_each(|data| opt_data = Some(data)); | ||
assert_eq!(opt_data.unwrap(), &mut *opt_data_2.unwrap()); // oops UB | ||
} | ||
dbg!("bye"); | ||
} | ||
} |
119 changes: 119 additions & 0 deletions
119
crates/bevy_ecs_compile_fail_tests/tests/ui/query_lifetime_safety.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
error[E0502]: cannot borrow `query` as mutable because it is also borrowed as immutable | ||
--> tests/ui/query_lifetime_safety.rs:17:39 | ||
| | ||
16 | let data: &Foo = query.get(e).unwrap(); | ||
| ------------ immutable borrow occurs here | ||
17 | let mut data2: Mut<Foo> = query.get_mut(e).unwrap(); | ||
| ^^^^^^^^^^^^^^^^ mutable borrow occurs here | ||
18 | assert_eq!(data, &mut *data2); // oops UB | ||
| ----------------------------- immutable borrow later used here | ||
|
||
error[E0502]: cannot borrow `query` as immutable because it is also borrowed as mutable | ||
--> tests/ui/query_lifetime_safety.rs:23:30 | ||
| | ||
22 | let mut data2: Mut<Foo> = query.get_mut(e).unwrap(); | ||
| ---------------- mutable borrow occurs here | ||
23 | let data: &Foo = query.get(e).unwrap(); | ||
| ^^^^^^^^^^^^ immutable borrow occurs here | ||
24 | assert_eq!(data, &mut *data2); // oops UB | ||
| ----- mutable borrow later used here | ||
|
||
error[E0502]: cannot borrow `query` as mutable because it is also borrowed as immutable | ||
--> tests/ui/query_lifetime_safety.rs:29:39 | ||
| | ||
28 | let data: &Foo = query.get_component::<Foo>(e).unwrap(); | ||
| ----------------------------- immutable borrow occurs here | ||
29 | let mut data2: Mut<Foo> = query.get_component_mut(e).unwrap(); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ mutable borrow occurs here | ||
30 | assert_eq!(data, &mut *data2); // oops UB | ||
| ----------------------------- immutable borrow later used here | ||
|
||
error[E0502]: cannot borrow `query` as immutable because it is also borrowed as mutable | ||
--> tests/ui/query_lifetime_safety.rs:35:30 | ||
| | ||
34 | let mut data2: Mut<Foo> = query.get_component_mut(e).unwrap(); | ||
| -------------------------- mutable borrow occurs here | ||
35 | let data: &Foo = query.get_component::<Foo>(e).unwrap(); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ immutable borrow occurs here | ||
36 | assert_eq!(data, &mut *data2); // oops UB | ||
| ----- mutable borrow later used here | ||
|
||
error[E0502]: cannot borrow `query` as mutable because it is also borrowed as immutable | ||
--> tests/ui/query_lifetime_safety.rs:41:39 | ||
| | ||
40 | let data: &Foo = query.single(); | ||
| -------------- immutable borrow occurs here | ||
41 | let mut data2: Mut<Foo> = query.single_mut(); | ||
| ^^^^^^^^^^^^^^^^^^ mutable borrow occurs here | ||
42 | assert_eq!(data, &mut *data2); // oops UB | ||
| ----------------------------- immutable borrow later used here | ||
|
||
error[E0502]: cannot borrow `query` as immutable because it is also borrowed as mutable | ||
--> tests/ui/query_lifetime_safety.rs:47:30 | ||
| | ||
46 | let mut data2: Mut<Foo> = query.single_mut(); | ||
| ------------------ mutable borrow occurs here | ||
47 | let data: &Foo = query.single(); | ||
| ^^^^^^^^^^^^^^ immutable borrow occurs here | ||
48 | assert_eq!(data, &mut *data2); // oops UB | ||
| ----- mutable borrow later used here | ||
|
||
error[E0502]: cannot borrow `query` as mutable because it is also borrowed as immutable | ||
--> tests/ui/query_lifetime_safety.rs:53:39 | ||
| | ||
52 | let data: &Foo = query.get_single().unwrap(); | ||
| ------------------ immutable borrow occurs here | ||
53 | let mut data2: Mut<Foo> = query.get_single_mut().unwrap(); | ||
| ^^^^^^^^^^^^^^^^^^^^^^ mutable borrow occurs here | ||
54 | assert_eq!(data, &mut *data2); // oops UB | ||
| ----------------------------- immutable borrow later used here | ||
|
||
error[E0502]: cannot borrow `query` as immutable because it is also borrowed as mutable | ||
--> tests/ui/query_lifetime_safety.rs:59:30 | ||
| | ||
58 | let mut data2: Mut<Foo> = query.get_single_mut().unwrap(); | ||
| ---------------------- mutable borrow occurs here | ||
59 | let data: &Foo = query.get_single().unwrap(); | ||
| ^^^^^^^^^^^^^^^^^^ immutable borrow occurs here | ||
60 | assert_eq!(data, &mut *data2); // oops UB | ||
| ----- mutable borrow later used here | ||
|
||
error[E0502]: cannot borrow `query` as mutable because it is also borrowed as immutable | ||
--> tests/ui/query_lifetime_safety.rs:65:39 | ||
| | ||
64 | let data: &Foo = query.iter().next().unwrap(); | ||
| ------------ immutable borrow occurs here | ||
65 | let mut data2: Mut<Foo> = query.iter_mut().next().unwrap(); | ||
| ^^^^^^^^^^^^^^^^ mutable borrow occurs here | ||
66 | assert_eq!(data, &mut *data2); // oops UB | ||
| ----------------------------- immutable borrow later used here | ||
|
||
error[E0502]: cannot borrow `query` as immutable because it is also borrowed as mutable | ||
--> tests/ui/query_lifetime_safety.rs:71:30 | ||
| | ||
70 | let mut data2: Mut<Foo> = query.iter_mut().next().unwrap(); | ||
| ---------------- mutable borrow occurs here | ||
71 | let data: &Foo = query.iter().next().unwrap(); | ||
| ^^^^^^^^^^^^ immutable borrow occurs here | ||
72 | assert_eq!(data, &mut *data2); // oops UB | ||
| ----- mutable borrow later used here | ||
|
||
error[E0502]: cannot borrow `query` as mutable because it is also borrowed as immutable | ||
--> tests/ui/query_lifetime_safety.rs:79:13 | ||
| | ||
78 | query.for_each(|data| opt_data = Some(data)); | ||
| -------------------------------------------- immutable borrow occurs here | ||
79 | query.for_each_mut(|data| opt_data_2 = Some(data)); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ mutable borrow occurs here | ||
80 | assert_eq!(opt_data.unwrap(), &mut *opt_data_2.unwrap()); // oops UB | ||
| -------- immutable borrow later used here | ||
|
||
error[E0502]: cannot borrow `query` as immutable because it is also borrowed as mutable | ||
--> tests/ui/query_lifetime_safety.rs:87:13 | ||
| | ||
86 | query.for_each_mut(|data| opt_data_2 = Some(data)); | ||
| -------------------------------------------------- mutable borrow occurs here | ||
87 | query.for_each(|data| opt_data = Some(data)); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ immutable borrow occurs here | ||
88 | assert_eq!(opt_data.unwrap(), &mut *opt_data_2.unwrap()); // oops UB | ||
| ---------- mutable borrow later used here |