From dc8045a20e8e5020ec2e75962522e31d48117cfe Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sun, 24 Sep 2023 10:57:16 -0400 Subject: [PATCH] Trivial goop while refreshing on RBE --- rustbyexample/hello/print_debug2.rs | 1 + rustbyexample/hello/testcase_list.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/rustbyexample/hello/print_debug2.rs b/rustbyexample/hello/print_debug2.rs index 0a2edd4..63ab88b 100644 --- a/rustbyexample/hello/print_debug2.rs +++ b/rustbyexample/hello/print_debug2.rs @@ -1,3 +1,4 @@ +#[allow(dead_code)] #[derive(Debug)] struct Person<'a> { name: &'a str, diff --git a/rustbyexample/hello/testcase_list.rs b/rustbyexample/hello/testcase_list.rs index 263da30..ac5de5d 100644 --- a/rustbyexample/hello/testcase_list.rs +++ b/rustbyexample/hello/testcase_list.rs @@ -20,6 +20,6 @@ impl fmt::Display for List { } fn main() { - let v = List(vec![1, 2, 3]); + let v = List(vec![6, 0, 6, 8, 0, 8, 9, 1, 1, 1, 3, 1, 2]); println!("{}", v); }