Merge pull request #4609 from sonwow/keyword-super

Make `super` a keyword
This commit is contained in:
Tim Chevalier 2013-01-24 11:17:52 -08:00
commit f3ec278e46
4 changed files with 10 additions and 7 deletions

View file

@ -0,0 +1,3 @@
fn main() {
let super: int; //~ ERROR found `super` in ident position
}