blob: 616e59221037fa175106accfd4676ef208b504cb [file] [log] [blame]
keith_miller@apple.combcc77f22016-07-15 06:03:25 +00001// Copyright 2009 the Sputnik authors. All rights reserved.
2// This code is governed by the BSD license found in the LICENSE file.
3
4/*---
5info: "DecimalLiteral :: DecimalIntegerLiteral. DecimalDigits"
6es5id: 7.8.3_A3.2_T2
7description: After DecimalIntegerLiteral. used ZeroDigits
8---*/
9
10//CHECK#0
11if (0.00 !== 0) {
12 $ERROR('#0: 0.00 === 0');
13}
14
15//CHECK#1
16if (1.00 !== 1) {
17 $ERROR('#1: 1.00 === 1');
18}
19
20//CHECK#2
21if (2.00 !== 2) {
22 $ERROR('#2: 2.00 === 2');
23}
24
25//CHECK#3
26if (3.00 !== 3) {
27 $ERROR('#3: 3.00 === 3');
28}
29
30//CHECK#4
31if (4.00 !== 4) {
32 $ERROR('#4: 4.00 === 4');
33}
34
35//CHECK#5
36if (5.00 !== 5) {
37 $ERROR('#5: 5.00 === 5');
38}
39
40//CHECK#6
41if (6.00 !== 6) {
42 $ERROR('#6: 6.00 === 6');
43}
44
45//CHECK#7
46if (7.00 !== 7) {
47 $ERROR('#7: 7.00 === 7');
48}
49
50//CHECK#8
51if (8.00 !== 8) {
52 $ERROR('#8: 8.00 === 8');
53}
54
55//CHECK#9
56if (9.00 !== 9) {
57 $ERROR('#9: 9.00 === 9');
58}