create module so that RUSTC_LOG can filter to just proof trees

This commit is contained in:
Boxy
2023-06-09 01:11:58 +01:00
parent bb743f8635
commit 9af7122b1d
3 changed files with 9 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
use rustc_middle::traits::solve::inspect::GoalEvaluation;
pub fn print_tree(tree: &GoalEvaluation<'_>) {
debug!(?tree);
}