Changes in tests/enum_tests/position.cfa [eb7586e:5eb3f65]
- File:
-
- 1 edited
-
tests/enum_tests/position.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/enum_tests/position.cfa
reb7586e r5eb3f65 17 17 Colour c2 = fishy; 18 18 19 sout | "Compile Time: blue value: " | value E(Colour.Blue) | ", position: " | posE(Colour.Blue) | ", label: " | labelE(Colour.Blue) | ", default return value: " | Colour.Blue;20 sout | "Runtime: fishy value: " | value E(fishy) | ", position: " | posE(fishy) | ", label: " | labelE(fishy) | ", default return value: " | fishy;21 sout | "Runtime: C2 value: " | value E(c2) | ", position: " | posE(c2) | ", label: " | labelE(c2) | ", default return value: " | c2;19 sout | "Compile Time: blue value: " | value(Colour.Blue) | ", position: " | posn(Colour.Blue) | ", label: " | label(Colour.Blue) | ", default return value: " | Colour.Blue; 20 sout | "Runtime: fishy value: " | value(fishy) | ", position: " | posn(fishy) | ", label: " | label(fishy) | ", default return value: " | fishy; 21 sout | "Runtime: C2 value: " | value(c2) | ", position: " | posn(c2) | ", label: " | label(c2) | ", default return value: " | c2; 22 22 Colour.Red; 23 23 char * ao = Colour.Red;
Note:
See TracChangeset
for help on using the changeset viewer.