| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| info: "DecimalLiteral :: DecimalIntegerLiteral. DecimalDigigts ExponentPart" |
| description: "ExponentPart :: E DecimalDigits" |
| $ERROR('#0: 0.0E1 === 0'); |
| $ERROR('#1: 1.1E1 === 11'); |
| $ERROR('#2: 2.2E1 === 22'); |
| $ERROR('#3: 3.3E1 === 33'); |
| $ERROR('#4: 4.4E1 === 44'); |
| $ERROR('#5: 5.5E1 === 55'); |
| $ERROR('#6: 6.E1 === 66'); |
| $ERROR('#7: 7.7E1 === 77'); |
| $ERROR('#8: 8.8E1 === 88'); |
| $ERROR('#9: 9.9E1 === 99'); |