// Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use neqo_transport::ecn; #[test] fn crate_exports_ecn_types() { let stats = neqo_transport::Stats::default(); _ = stats.ecn_path_validation[ecn::ValidationOutcome::Capable]; _ = stats.ecn_path_validation [ecn::ValidationOutcome::NotCapable(ecn::ValidationError::BlackHole)]; }