We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdf50e8 commit 67b1034Copy full SHA for 67b1034
src/rustdoc/attr_parser.rs
@@ -80,11 +80,10 @@ mod test {
80
81
fn parse_attributes(source: str) -> [ast::attribute] {
82
import rustc::syntax::parse::parser;
83
- // FIXME: Uncommenting this results in rustc bugs
84
- //import rustc::syntax::codemap;
+ import rustc::syntax::codemap;
85
import rustc::driver::diagnostic;
86
87
- let cm = rustc::syntax::codemap::new_codemap();
+ let cm = codemap::new_codemap();
88
let handler = diagnostic::mk_handler(none);
89
let parse_sess = @{
90
cm: cm,
src/rustdoc/fold.rs
@@ -1,6 +1,3 @@
1
-// FIXME: Random import to solve the mystery resolve bug
2
-import std;
3
-
4
export fold;
5
export fold_crate, fold_mod, fold_fn;
6
export default_seq_fold;
0 commit comments