We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a435312 commit 73a1a4cCopy full SHA for 73a1a4c
source/rust_verify/src/verifier.rs
@@ -2822,10 +2822,11 @@ impl Verifier {
2822
imp.x.trait_typ_args.iter().map(vir::ast_util::typ_to_diagnostic_str).collect();
2823
writeln!(
2824
&mut file,
2825
- "{} ### {} ### {}",
+ "{} ### {} ### {} ### {}",
2826
vir::ast_util::path_as_friendly_rust_name(&imp.x.impl_path),
2827
vir::ast_util::path_as_friendly_rust_name(&imp.x.trait_path),
2828
&ts.join(", "),
2829
+ &imp.span.as_string,
2830
)
2831
.map_err(|e| io_vir_err("log_impl_names".to_string(), e))
2832
.map_err(map_err_diagnostics)?;
0 commit comments