1 2 3 4 5 6 7 8 9 10
use crate::network::library::DummyKey; use super::TensorNetworkError; #[test] fn display() { let a = TensorNetworkError::<i8, DummyKey>::Infallible; println!("{a}") }