forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#61792 - lzutao:issue-51301, r=Centril
Add ui test for issue 51301 Closes rust-lang#51301
- Loading branch information
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
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,35 @@ | ||
use std::any::TypeId; | ||
use std::collections::HashMap; | ||
use std::hash::Hash; | ||
|
||
trait State { | ||
type EventType; | ||
fn get_type_id_of_state(&self) -> TypeId; | ||
} | ||
|
||
struct StateMachine<EventType: Hash + Eq> { | ||
current_state: Box<dyn State<EventType = EventType>>, | ||
transition_table: | ||
HashMap<TypeId, HashMap<EventType, fn() -> Box<dyn State<EventType = EventType>>>>, | ||
} | ||
|
||
impl<EventType: Hash + Eq> StateMachine<EventType> { | ||
fn inner_process_event(&mut self, event: EventType) -> Result<(), i8> { | ||
let new_state_creation_function = self | ||
.transition_table | ||
.iter() | ||
.find(|(&event_typeid, _)| event_typeid == self.current_state.get_type_id_of_state()) | ||
.ok_or(1)? | ||
.1 | ||
.iter() | ||
.find(|(&event_type, _)| event == event_type) | ||
//~^ ERROR cannot move out of a shared reference | ||
.ok_or(2)? | ||
.1; | ||
|
||
self.current_state = new_state_creation_function(); | ||
Ok(()) | ||
} | ||
} | ||
|
||
fn main() {} |
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,12 @@ | ||
error[E0507]: cannot move out of a shared reference | ||
--> $DIR/issue-51301.rs:25:20 | ||
| | ||
LL | .find(|(&event_type, _)| event == event_type) | ||
| ^^----------^^^^ | ||
| | | ||
| data moved here | ||
| move occurs because `event_type` has type `EventType`, which does not implement the `Copy` trait | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0507`. |