about summary refs log tree commit diff
path: root/src/test/compile-fail/import-from-path.rs
AgeCommit message (Collapse)AuthorLines
2015-02-06Move compile-fail tests that are rejected by the parser to parse-failFlorian Hahn-12/+0
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵Patrick Walton-1/+1
rs=implflipping
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-09-05test: "import" -> "use"Patrick Walton-1/+1
2012-07-13More consistent use of backticks and "expected" in error messages.Lindsey Kuper-1/+1
Got some of the debug messages, here, too. I figure it doesn't hurt to get used to doing this even in places where users won't ever see it.
2012-02-17Refactor view_path to parse (but not yet process) export globs, unify code ↵Graydon Hoare-1/+1
paths.
2011-08-17Allow multiple imports in a single statementBrian Anderson-0/+2
Like so: import foo::{bar, baz}; Issue #817