summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/browser/test-cu-reporterror.js
blob: f769f73876f15350811d996172b150619b990eed (plain)
1
2
3
4
5
6
7
"use strict";
function a() {
  Cu.reportError(
    "error thrown from test-cu-reporterror.js via Cu.reportError()"
  );
}
a();