fix: update generics2 closes #362

This commit is contained in:
sjmann 2020-04-21 13:34:25 +01:00
parent c9e4f2cfb4
commit 964c974a02
1 changed files with 3 additions and 5 deletions

View File

@ -2,11 +2,11 @@
// Rewrite it using generics so that it supports wrapping ANY type.
// I AM NOT DONE
struct Wrapper<u32> {
struct Wrapper {
value: u32
}
impl<u32> Wrapper<u32> {
impl Wrapper {
pub fn new(value: u32) -> Self {
Wrapper { value }
}
@ -23,8 +23,6 @@ mod tests {
#[test]
fn store_str_in_wrapper() {
// TODO: Delete this assert and uncomment the one below once you have finished the exercise.
assert!(false);
// assert_eq!(Wrapper::new("Foo").value, "Foo");
assert_eq!(Wrapper::new("Foo").value, "Foo");
}
}