Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| ajterr:10013 [2025-03-01 22:01] – created 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 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; | ||
| test: test1 := 4; | test: test1 := 4; | ||
| - | // ^^^^^ You are referencing a property here instead of a type. | + | // ^^^^^ You are referencing a property here instead of a type. |
| - | example::exampleClass | + | </ |
| + | **(2)**: | ||
| + | < | ||
| + | test: test1 := 4; | ||
| + | example | ||
| + | // ^^^^ You are referencing a property here instead of a type. | ||
| + | </ | ||
| + | **(3)**: | ||
| + | < | ||
| + | test: test1 := 4; | ||
| + | example |argument: test|: void { } | ||
| + | // ^^^^ You are referencing a property here instead of a type. | ||
| </ | </ | ||
| - | |||
| ===== How can I resolve this error? ===== | ===== How can I resolve this error? ===== | ||