File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -654,21 +654,12 @@ class parser {
654
654
if self.token == token::BINOP(token::SLASH) {
655
655
self.bump();
656
656
alt copy self.token {
657
- token::AT {
658
- self.bump(); some(vstore_box)
659
- }
660
- token::TILDE {
661
- self.bump(); some(vstore_uniq)
662
- }
663
657
token::UNDERSCORE {
664
658
self.bump(); some(vstore_fixed(none))
665
659
}
666
660
token::LIT_INT_UNSUFFIXED(i) if i >= 0i64 {
667
661
self.bump(); some(vstore_fixed(some(i as uint)))
668
662
}
669
- token::BINOP(token::AND) {
670
- some(vstore_slice(self.parse_region()))
671
- }
672
663
_ {
673
664
none
674
665
}
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ fn get_lint_dict() -> lint_dict {
112
112
( ~"old_strs",
113
113
@{ lint: old_strs,
114
114
desc: ~"old ( deprecated) strings",
115
- default : warn } ) ,
115
+ default : error } ) ,
116
116
117
117
( ~"unrecognized_warning",
118
118
@{ lint: unrecognized_warning,
You can’t perform that action at this time.
0 commit comments