about summary refs log tree commit diff
path: root/src/test/ui/issue-33941.stderr
AgeCommit message (Collapse)AuthorLines
2018-08-14Merged migrated compile-fail tests and ui tests. Fixes #46841.David Wood-22/+0
2018-03-14update testsGuillaume Gomez-1/+1
2018-02-26Update UI testsVadim Petrochenkov-2/+2
2018-02-25Update ui testsGuillaume Gomez-0/+1
2018-01-26Modify spans of expanded expressionEsteban Küber-2/+2
Modify the spans used for `for`-loop expression expansion, instead of creating a new span during error creation.
2017-11-24Merge cfail and ui tests into ui testsOliver Schneider-2/+2
2017-11-12deduplicate projection error (E0271) messagesZack M. Davis-0/+21
The `ErrorId` variant takes a u16 so that `DiagnosticMessageId` can retain its `Copy` status (the present author's first choice having been the "EXXX" code as a string). The duplicated "type mismatch resolving `{}`" literal is unfortunate, but the `struct_span_err!` macro (which we want to mark that error code as used) is fussy about taking a literal, and the one-time-diagnostics set needs an owned string. This is concerning #33941 and probably #45805!