diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-01-19 01:03:57 -0800 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-01-19 01:04:59 -0800 |
| commit | 5b028f527f2c487a5f4196fdf3cfc7a2acef74ff (patch) | |
| tree | 5888a216866e8d94d3211dbf39bb943d64d47017 /src/fuzzer | |
| parent | 9df03068897602d4377a35c0ae3cf2467666a039 (diff) | |
| download | rust-5b028f527f2c487a5f4196fdf3cfc7a2acef74ff.tar.gz rust-5b028f527f2c487a5f4196fdf3cfc7a2acef74ff.zip | |
Remove support for the '.' after a nullary tag in a pattern
(Commit also includes lots of changes to remove '.'s that a git merge messed up, or else it was monkeys.)
Diffstat (limited to 'src/fuzzer')
| -rw-r--r-- | src/fuzzer/fuzzer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fuzzer/fuzzer.rs b/src/fuzzer/fuzzer.rs index be00d8153e6..f40a1a77964 100644 --- a/src/fuzzer/fuzzer.rs +++ b/src/fuzzer/fuzzer.rs @@ -165,7 +165,7 @@ fn safe_to_replace_expr(e: ast::expr_, _tm: test_mode) -> bool { fn safe_to_replace_ty(t: ast::ty_, _tm: test_mode) -> bool { alt t { - ast::ty_infer. { false } // always implicit, always top level + ast::ty_infer { false } // always implicit, always top level ast::ty_bot { false } // in source, can only appear as the out type of a function ast::ty_mac(_) { false } _ { true } |
