summary refs log tree commit diff
path: root/src/test/run-fail/binop-fail.rs
AgeCommit message (Collapse)AuthorLines
2012-08-29rustc: Make `<` and `=` into traitsPatrick Walton-1/+1
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-2/+2
#2907.
2011-12-22Register new snapshots, purge log_err and log_full in favour of log(...).Graydon Hoare-1/+1
2011-12-22Register snapshots and switch logging over to use of log_full or #error / ↵Graydon Hoare-1/+1
#debug.
2011-08-02 In trans, don't assume both sides of a binop have the same typeTim Chevalier-0/+3
This was at least partially responsible for Issue 777. The only solution I can think of is for trans to just not generate code for a comparison if one or both sides has type _|_. Since that means evaluating that subexpression diverges, it should be ok to never do the comparison. Actually generating code for the comparison would trip an LLVM assertion failure.