Modify ↓
#1613 closed Bug (No Bug)
Default (keyword), Auto conversion.
| Reported by: | anonymous | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | 3.3.6.1 | Severity: | None |
| Keywords: | Cc: |
Description
Not to sure. But if there test true. (they do)
If (10 + Default) = 9 Then ConsoleWrite("(Default + 10) = 9" & @CRLF)
If ('abc' & Default) = 'ABCDefault' Then ConsoleWrite("(Default & 'abc') = 'DefaultABC'" & @CRLF)
than (I think) these should fail. (they don't)
If 'default' <> Default Then ConsoleWrite("'Default' <> Default" & @CRLF)
If -1 <> Default Then ConsoleWrite(" -1 <> Default" & @CRLF)
Default keyword not auto converted in last cases. (direct_compare)
Attachments (0)
Change History (3)
comment:1 by , 16 years ago
comment:2 by , 16 years ago
| Resolution: | → No Bug |
|---|---|
| Status: | new → closed |
is it the same anonymous which give a so clear explanation?
Anyway I think the doc explain what is happening.
Note:
See TracTickets
for help on using tickets.

No bug as it seems.
Explains the result in the first code.
Not to sure if this apply's to this situation. (assuming it is)