1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-11-29 22:47:43 +02:00

generics2 solution

This commit is contained in:
mo8it
2024-06-27 02:25:11 +02:00
parent 46121b71cf
commit de3f846a53
3 changed files with 32 additions and 9 deletions

View File

@@ -1 +1,28 @@
// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
struct Wrapper<T> {
value: T,
}
impl<T> Wrapper<T> {
fn new(value: T) -> Self {
Wrapper { value }
}
}
fn main() {
// You can optionally experiment here.
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn store_u32_in_wrapper() {
assert_eq!(Wrapper::new(42).value, 42);
}
#[test]
fn store_str_in_wrapper() {
assert_eq!(Wrapper::new("Foo").value, "Foo");
}
}