Implement dbg mono pattern for CompilerBug

This commit is contained in:
Agus Zubiaga 2024-12-14 19:17:46 -03:00
parent 48e7c5d5d6
commit dbaa6417a9
No known key found for this signature in database

View file

@ -433,8 +433,8 @@ fn dbg_mono_pattern_help<'a>(
MonoPattern::Underscore => {
write!(buf, "Underscore")
}
MonoPattern::CompilerBug(_) => {
todo!()
MonoPattern::CompilerBug(problem) => {
write!(buf, "CompilerBug({:?}", problem)
}
}
}