Ticket #20 (closed defect: fixed)
Method with property declaration fails to return
| Reported by: | wolf <rowan@…> | Owned by: | mooneer |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | interpreter | Version: | 1.0a2 |
| Keywords: | Cc: |
Description
Testcase:
method a() [ property anything; ret = "from a"; ]; method b() [ ret = "from b"; ]; property found; found = "unset"; found = a(); found|print; found = b(); found|print;
Output:
unset from b
Expected:
from a from b
Change History
Note: See
TracTickets for help on using
tickets.

Odly, if you call the methods and print them:
You get the expected output.