about summary refs log tree commit diff
path: root/src/test/compile-fail/bad-module.rs
AgeCommit message (Collapse)AuthorLines
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-2/+2
2011-12-02Be less specific in 'unresolved import' error patternsMarijn Haverbeke-1/+1
To make sure different test set-ups (check-fast) don't cause the tests to fail.
2011-08-20ReformatBrian Anderson-1/+1
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-08-18More misc ivec->vec renamingBrian Anderson-2/+2
2011-08-16Rename std::ivec to std::vecBrian Anderson-1/+1
2011-08-12Remove last uses of vec::lenBrian Anderson-3/+3
2011-07-27Reformat for new syntaxMarijn Haverbeke-3/+1
2011-06-14Remove some unnecessary xfailsTim Chevalier-1/+0
2011-05-24Stop showing a 'cyclic import' message for unresolved importsMarijn Haverbeke-2/+2
This only happened for single-length import paths, because the import was being looked up in its own scope.
2011-05-24Improve nonexistent-module error messageTim Chevalier-0/+7
The error message for (for example) "import vec;" without "use std;" was "cyclic import", which was misleading because there were no cycles. I changed it to "cyclic import or nonexistent module", which doesn't break existing tests.