* Replace tag type with tagIdent and tagDecl Signed-off-by: Nick Cameron <nrc@ncameron.org> * Replace tagIdent with TaggedEdge and TaggedFace Signed-off-by: Nick Cameron <nrc@ncameron.org> --------- Signed-off-by: Nick Cameron <nrc@ncameron.org>
30 lines
1.5 KiB
Plaintext
30 lines
1.5 KiB
Plaintext
---
|
||
source: kcl-lib/src/simulation_tests.rs
|
||
description: Error from executing panic_repro_cube.kcl
|
||
---
|
||
KCL Semantic error
|
||
|
||
× semantic: The input argument of `getNextAdjacentEdge` requires a value
|
||
│ with type `TaggedEdge`, but found a unique ID (uuid) (with type `Edge`).
|
||
╭─[43:5]
|
||
42 │ // these double wrapped functions are the point of this test
|
||
43 │ getNextAdjacentEdge(getNextAdjacentEdge(seg01)),
|
||
· ───────────────────────┬───────────────────────┬
|
||
· │ ╰── tests/panic_repro_cube/input.kcl
|
||
· ╰── tests/panic_repro_cube/input.kcl
|
||
44 │ getNextAdjacentEdge(getNextAdjacentEdge(seg02))
|
||
╰────
|
||
╰─▶ KCL Semantic error
|
||
|
||
× semantic: The input argument of `getNextAdjacentEdge` requires a
|
||
│ value with type `TaggedEdge`, but found a unique ID (uuid) (with
|
||
│ type `Edge`).
|
||
╭─[43:25]
|
||
42 │ // these double wrapped functions are the point of this test
|
||
43 │ getNextAdjacentEdge(getNextAdjacentEdge(seg01)),
|
||
· ─────────────┬────────────
|
||
· ╰── tests/panic_repro_cube/
|
||
input.kcl
|
||
44 │ getNextAdjacentEdge(getNextAdjacentEdge(seg02))
|
||
╰────
|