]> git.proxmox.com Git - rustc.git/blob - vendor/annotate-snippets-0.8.0/tests/fixtures/no-color/multiple_annotations.txt
New upstream version 1.63.0+dfsg1
[rustc.git] / vendor / annotate-snippets-0.8.0 / tests / fixtures / no-color / multiple_annotations.txt
1 |
2 96 | fn add_title_line(result: &mut Vec<String>, main_annotation: Option<&Annotation>) {
3 97 | if let Some(annotation) = main_annotation {
4 | ^^^^^^^^^^ Variable defined here
5 98 | result.push(format_title_line(
6 99 | &annotation.annotation_type,
7 | ^^^^^^^^^^ Referenced here
8 100 | None,
9 101 | &annotation.label,
10 | ^^^^^^^^^^ Referenced again here
11 102 | ));
12 103 | }
13 104 | }
14 |