Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions collector/compile-benchmarks/include-blob/0-println.patch
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
diff --git a/src/main.rs b/src/main.rs
index 9cb1671e..fc854410 100644
index 3f07848e..f0c0dc70 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -6,5 +6,5 @@ fn main() {
"Binary blob last element: {}",
BLOB_BINARY[BLOB_BINARY.len() - 1]
);
- println!("String blob: {BLOB_STRING}");
+ println!("String blob contents: {BLOB_STRING}");
@@ -3,5 +3,5 @@ const BLOB_STRING: &str = include_str!(concat!(env!("OUT_DIR"), "/blob-string"))

fn main() {
println!("Binary blob: {BLOB_BINARY:?}");
- println!("String blob: {BLOB_STRING:?}");
+ println!("String blob contents: {BLOB_STRING:?}");
}
Loading