summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/fields/bug1551454.js
blob: 5bb77af46d918bbd1806524cc9249e7575a8d1f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class C {
  1 = eval();
}
new C();

class D {
  1.5 = eval();
}
new D();

if (typeof reportCompare === "function")
  reportCompare(true, true);