One would expect this minimal example to never panic:
let foo: i32 = { /* ... */ };
let foo2: i32 = *use_selector_with_deps(|_: &MyStore, &foo| foo, foo);
assert_eq!(foo, foo2);
But it does. Selector can return results for older dependencies when new are provided.
One would expect this minimal example to never panic:
But it does. Selector can return results for older dependencies when new are provided.