mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 07:14:46 +00:00
Remove catch all for problem report
This commit is contained in:
parent
da4e97fd25
commit
1d839863a1
1 changed files with 4 additions and 3 deletions
|
@ -134,12 +134,13 @@ pub fn can_problem(filename: PathBuf, problem: Problem) -> Report {
|
|||
original_region,
|
||||
shadow,
|
||||
} => {
|
||||
// v-- just to satisfy clippy
|
||||
let _a = original_region;
|
||||
let _b = shadow;
|
||||
panic!("TODO implement shadow report")
|
||||
panic!("TODO implement shadow report");
|
||||
}
|
||||
_ => {
|
||||
panic!("TODO implement others");
|
||||
Problem::RuntimeError(_runtime_error) => {
|
||||
panic!("TODO implement run time error report");
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue