You must specify a type as an attribute (AJTERR10011)
| Product(s) | Karo.NET Compiler |
|---|
Description
When specifying an attribute you must reference a type. This error is thrown when your code references something else.
test: number := 4;
[test]/*
^^^^ You are referencing a property here instead of a type.
*/
example::exampleClass { }
How can I resolve this error?
Specify a valid type.