summary refs log tree commit diff
path: root/src/test/ui/method-call-err-msg.stderr
AgeCommit message (Collapse)AuthorLines
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