about summary refs log tree commit diff
path: root/src/test/compile-fail/import4.rs
AgeCommit message (Collapse)AuthorLines
2011-12-02Make import ignore imports coming after themMarijn Haverbeke-2/+2
This broke no code at all, so I guess people were already writing imports in this style. Issue #1228
2011-09-02Reformat. Issue #855Brian Anderson-1/+1
2011-09-01Convert main functions to istrs. Issue #855Brian Anderson-1/+1
2011-08-16Port the tests to the typaram foo<T> syntax.Erick Tryzelaar-1/+1
2011-08-16Convert most main functions to the ivec signatureBrian Anderson-1/+1
Converting rustc will still take a snapshot
2011-07-27Reformat for new syntaxMarijn Haverbeke-3/+1
2011-05-14Remove xfail-boot lines from testsBrian Anderson-1/+0
2011-05-12Downcase std modules again, move to :: for module dereferencingMarijn Haverbeke-2/+2
This should be a snapshot transition.
2011-03-25Switch xfail system to use comments embedded in source files.Graydon Hoare-0/+1
2011-01-17Enable more tests.Rafael Ávila de Espíndola-1/+1
2011-01-14Fix the import handling in "complex" cases. When looking a.b.c and 'a' is aRafael Ávila de Espíndola-0/+8
module, we should look for 'b' *just* in the module 'a' and then continue resolving b.c in the environment created by updating *with* a. Still not 100% correct, but getting there.