• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #![cfg(feature = "checked_conversions")]
2 
3 mod common;
4 
5 #[test]
test_complex()6 fn test_complex() {
7     assert_eq!(Ok(()), common::test_bytes(b"\xED\xAB\xBE\xF4\x8D\xBC\x9A"));
8 }
9