Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| ajterr:10013 [2025-03-09 14:45] – admin | ajterr:10013 [2026-06-17 00:21] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 5: | Line 5: | ||
| ===== Description ===== | ===== Description ===== | ||
| - | When specifying the type of a variable assignment or a parameter definition you must reference a type. This error is thrown when your code references something else. | + | When specifying the type of a variable assignment |
| + | **(1)**: | ||
| < | < | ||
| test1: number := 7; | test1: number := 7; | ||
| Line 12: | Line 13: | ||
| // ^^^^^ You are referencing a property here instead of a type. | // ^^^^^ You are referencing a property here instead of a type. | ||
| </ | </ | ||
| + | **(2)**: | ||
| + | < | ||
| + | test: test1 := 4; | ||
| + | example ||: test { } | ||
| + | // ^^^^ You are referencing a property here instead of a type. | ||
| + | </ | ||
| + | **(3)**: | ||
| < | < | ||
| test: test1 := 4; | test: test1 := 4; | ||