1 2 3 4 5 6 7 8 9 10 11
use ic_memory::{CommittedAllocations, ValidatedAllocations}; fn requires_committed(_allocations: CommittedAllocations) {} fn validated() -> ValidatedAllocations { loop {} } fn main() { requires_committed(validated()); }