mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-20 03:18:06 +08:00
Rework DynAnyNode design to work with the borrow stack (#796)
This commit is contained in:
@@ -240,7 +240,7 @@ mod test {
|
||||
pub fn add_node() {
|
||||
let a = ValueNode(42u32);
|
||||
let b = ValueNode(6u32);
|
||||
let cons_a = ConsNode(a);
|
||||
let cons_a = ConsNode(a, PhantomData);
|
||||
|
||||
let sum = b.then(cons_a).then(AddNode);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user