summary refs log tree commit diff
path: root/src/test/ui/method-call-err-msg.stderr
AgeCommit message (Collapse)AuthorLines
2018-03-14update testsGuillaume Gomez-2/+2
2018-02-26Update UI testsVadim Petrochenkov-8/+8
2018-02-25Update ui testsGuillaume Gomez-0/+2
2018-01-22Do not suggest private traits that have missing methodEsteban Küber-4/+2
When encountering a method call for an ADT that doesn't have any implementation of it, we search for traits that could be implemented that do have that method. Filter out private non-local traits that would not be able to be implemented. This doesn't account for public traits that are in a private scope, but works as a first approximation and is a more correct behavior than the current one.
2017-12-14Fix rebaseVadim Petrochenkov-6/+6
Update docs for custom normalization of test output
2017-12-14Remove NOTE/HELP annotations from UI testsVadim Petrochenkov-5/+5
2017-12-10Point at whole method call instead of argsEsteban Küber-7/+7
To avoid confusion in cases where the code is ```rust fn foo() {} / foo( | bar() | ^^^ current diagnostics point here for arg count mismatch | ); |_^ new diagnostic span points here ``` as this leads to confusion making people think that the diagnostic is talking about `bar`'s arg count, not `foo`'s. Point at `fn`s definition on arg mismatch, just like we do for closures.
2017-11-24Merge cfail and ui tests into ui testsOliver Schneider-1/+1
2017-11-15Point to ADT definition when not finding variant, method, assoc typeEsteban Küber-0/+3
2017-10-13Pass the full span for method callsGeoffry Song-0/+44