Modify ↓
Opened on May 6, 2010 at 8:26:06 PM
Closed on May 6, 2010 at 10:24:04 PM
Last modified on May 6, 2010 at 10:47:21 PM
#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:2 by , on May 6, 2010 at 10:24:04 PM
| 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.
comment:3 by , on May 6, 2010 at 10:47:21 PM
is it the same anonymous which give a so clear explanation?
yes.
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)