rudd/
lib.rs

1pub struct Task;
2
3impl Task {
4    pub fn task_bracket(&mut self) {
5        unreachable!()
6    }
7}
8