summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/six-speed/tests/bindings.es6
blob: 44e34bc8d5bf68d9ce66100ff64f532ae7a7f798 (plain)
1
2
3
4
5
6
7
8
9
10
"use strict";

const a = 1;
let b = 2;

assertEqual(a+b, 3);

test(function() {
  return a + b;
});