summary refs log tree commit diff
path: root/src/test/compile-fail/method-call-err-msg.rs
AgeCommit message (Collapse)AuthorLines
2015-05-13Fix ICE that occurs when an associated const is ambiguous.Sean Patrick Santos-1/+1
Also change several error messages to refer to "items" rather than "methods", since associated items that require resolution during type checking are not always methods.
2015-01-08Update compile fail tests to use isize.Huon Wilson-2/+2
2014-04-24Calibrate span for method call error messagesEdward Wang-0/+30
Specifically, the method parameter cardinality mismatch or missing method error message span now gets method itself exactly. It was the whole expression. Closes #9390 Closes #13684 Closes #13709