about summary refs log tree commit diff
path: root/src/rustc/syntax/parse/parser.rs
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-03-08 14:29:17 -0800
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-03-08 14:30:01 -0800
commitd048a00cf3c275d9f9974960d0db463844da898e (patch)
treeed70a4437963d2c11daeeb91bf18be117c1f3abf /src/rustc/syntax/parse/parser.rs
parent0824d1501b7911f45d028cb387e5e159bdd63eca (diff)
downloadrust-d048a00cf3c275d9f9974960d0db463844da898e.tar.gz
rust-d048a00cf3c275d9f9974960d0db463844da898e.zip
Change util::unreachable to core::unreachable
Closes #1931
Diffstat (limited to 'src/rustc/syntax/parse/parser.rs')
-rw-r--r--src/rustc/syntax/parse/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rustc/syntax/parse/parser.rs b/src/rustc/syntax/parse/parser.rs
index 69c28c3c904..8b1625b04a1 100644
--- a/src/rustc/syntax/parse/parser.rs
+++ b/src/rustc/syntax/parse/parser.rs
@@ -1321,7 +1321,7 @@ fn parse_capture_clause(p: parser) -> @ast::capture_clause {
               _ { ret res; }
             }
         }
-        std::util::unreachable();
+        core::unreachable();
     }
 
     let copies = [];