GPT-5.6 Luna vs Qwen3.7 Max for code review
GPT-5.6 Luna wins, 95–88
Same 12 code review tasks, marked blind by three rival labs. GPT-5.6 Luna took 8 tasks, Qwen3.7 Max took 0, 4 tied. Tested 27 Aug 2026.
Where they differed most
Review this. Context: `invoice.dueDate` is a string in the form '2026-08-18'; the service runs on a server set to Europe/London; the business rule is that an invoice becomes overdue only once the whole of the due DAY has passed; the field can be missing on draft invoices. function isOverdue(invoice) { const due = new Date(invoice.dueDate); const now = new Date(); return now > due; } There are three defects here and one of them only appears for part of the year. Name all three, say what each looks like from the finance team's side of the screen (what they see in the overdue list that they should not, or do not see that they should), and identify which one is seasonal and why. Then give the corrected function.
There are three issues:
1. **A due date is interpreted as UTC midnight.**
`new Date('2026-08-18')` means `2026-08-18T00:00:00Z`, not local midnight in London.
- In winter, that is midnight in London.
- During British Summer Time, it is **01:00 London time**.
**Finance impact:** during BST, invoices due on 18 August can enter the overdue list from 01:00 on 18 August. They should not appear until 00:00 on 19 August.
2. **The comparison uses the start of the due day, rather than the end of it.**
Even ignoring the UTC issue,…## The Three Defects ### Defect 1 — No guard for a missing `dueDate` The function passes `invoice.dueDate` straight to `new Date()` without checking whether it exists. Draft invoices may have no `dueDate` at all. - If the field is `undefined` (absent), `new Date(undefined)` yields `Invalid Date`; any comparison with it returns `false`, so the draft is silently excluded — correct by accident, but fragile. - If the field is `null`, `new Date(null)` yields the Unix epoch (1 January 1970). `now > due` is then always `true`. **Finance team sees:…
Task by task
| Task | GPT-5.6 Luna | Qwen3.7 Max |
|---|---|---|
| The pagination that skips page one | 9 | 8 |
| Nothing wrong with it | 10 | 9 |
| Three things wrong in six lines | 10 | 9 |
| Two customers, one last item | 9 | 9 |
| Rank by what breaks | 9 | 9 |
| The review, as JSON | 9 | 8 |
| Slow is not the same as wrong | 10 | 9 |
| Overdue at one in the morning | 10 | 8 |
| Write only the comment | 10 | 9 |
| The complaint that is not a defect | 9 | 9 |
| Right, and unusable | 9 | 9 |
| Refuse the rubber stamp | 10 | 9 |
Full receipts: GPT-5.6 Luna, Qwen3.7 Max · judges claude-sonnet-5, gemini-3.1-pro-preview, grok-4.5
Questions people ask
Which is better for code review: GPT-5.6 Luna or Qwen3.7 Max?
GPT-5.6 Luna — it scored 95/100 against 88/100 on our 12-task code review suite, winning 8 tasks to 0 with 4 tied. Every answer was marked blind by three judges from three rival AI labs.
How was this tested?
Both models answered the identical published code review tasks. Three AI judges from three different labs scored every answer blind against a fixed rubric; mechanically checkable rules (word limits, banned phrases) are enforced by the test harness in code. The raw outputs and judge verdicts are downloadable.
More code review head-to-heads: GPT-5.6 Luna vs GPT-5.6 Sol · GPT-5.6 Sol vs Qwen3.7 Max · GPT-5.6 Luna vs GPT-5.6 Terra · GPT-5.3-Codex vs GPT-5.6 Luna · GPT-5.5 vs GPT-5.6 Luna · Claude Sonnet 5 vs GPT-5.6 Luna
Full ranking: Best AI for code review · model pages: GPT-5.6 Luna, Qwen3.7 Max