()
| 586 | |
| 587 | #[test] |
| 588 | fn roundtrip_traps() { |
| 589 | for trap in TrapCode::non_user_traps().iter().copied() { |
| 590 | let _flags = MemFlagsData::new().with_trap_code(Some(trap)); |
| 591 | } |
| 592 | let _flags = MemFlagsData::new().with_trap_code(None); |
| 593 | } |
| 594 | |
| 595 | #[test] |
| 596 | fn cannot_set_big_and_little() { |
nothing calls this directly
no test coverage detected