diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-03-08 14:29:17 -0800 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-03-08 14:30:01 -0800 |
| commit | d048a00cf3c275d9f9974960d0db463844da898e (patch) | |
| tree | ed70a4437963d2c11daeeb91bf18be117c1f3abf /src/rustc/syntax/parse/parser.rs | |
| parent | 0824d1501b7911f45d028cb387e5e159bdd63eca (diff) | |
| download | rust-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.rs | 2 |
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 = []; |
