| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| info: "DecimalLiteral :: DecimalIntegerLiteral ExponentPart" |
| description: "ExponentPart :: E +DecimalDigits" |
| $ERROR('#0: 0E+1 === 0'); |
| $ERROR('#1: 1E+1 === 10'); |
| $ERROR('#2: 2E+1 === 20'); |
| $ERROR('#3: 3E+1 === 30'); |
| $ERROR('#4: 4E+1 === 40'); |
| $ERROR('#5: 5E+1 === 50'); |
| $ERROR('#6: 6E+1 === 60'); |
| $ERROR('#7: 7E+1 === 70'); |
| $ERROR('#8: 8E+1 === 80'); |
| $ERROR('#9: 9E+1 === 90'); |