This commit is contained in:
Chris Tsang 2021-10-20 17:46:35 +08:00
parent 7b58c227e1
commit 43509afb31

View File

@ -4,4 +4,14 @@ pub fn clone_a_model<M>(model: &M) -> M
where
M: ModelTrait {
model.clone()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test() {
println!("OK");
}
}