about summary refs log tree commit diff
path: root/src/test/compile-fail/import-from-missing.rs
AgeCommit message (Collapse)AuthorLines
2018-08-14Moved compile-fail tests to ui tests.David Wood-22/+0
2016-08-22 Updated E0432 to new formatKnight-2/+2
2016-02-02Add fake import resolutions & targets for names in bad importsDirk Gadsden-2/+5
2016-01-22test falloutNick Cameron-0/+1
2014-06-18rustc: reduce redundant resolve errors.Kevin Butler-2/+2
2013-01-30test: De-export aux, bench, compile-fail, and run-fail. rs=deexportingPatrick Walton-2/+1
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-11-15Update error messages and un-xfailTim Chevalier-2/+1
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+1
#[legacy_exports];
2012-09-05test: "import" -> "use"Patrick Walton-1/+1
2012-07-19test: XFAIL some more in an effort to unbreak the treePatrick Walton-0/+1
2012-07-09rustc: Switch to the new resolution passPatrick Walton-1/+1
2012-07-06Revert "rustc: Switch to the new resolution pass"Niko Matsakis-1/+1
This reverts commit c4af6e92fbae171c56a4e68666025725555fc9d8. Branch was burning...many, many unresolved imports.
2012-07-06rustc: Switch to the new resolution passPatrick Walton-1/+1
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-5/+2
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-08-17Allow multiple imports in a single statementBrian Anderson-0/+11
Like so: import foo::{bar, baz}; Issue #817